diff options
| author | Koichiro IWAO <meta@vmeta.jp> | 2018-12-12 17:19:18 +0900 |
|---|---|---|
| committer | Koichiro IWAO <meta@vmeta.jp> | 2018-12-12 17:40:58 +0900 |
| commit | 0e9e25f100a70440dc54c18d4643ee74ba36840b (patch) | |
| tree | 5e5defb8fd1ba0568c8f259a952320e3d685e183 /libxrdp/libxrdp.c | |
| parent | b2a7bb0cf06e02ee83d83a78e0dd32050fd5cb36 (diff) | |
| download | xrdp-proprietary-0e9e25f100a70440dc54c18d4643ee74ba36840b.tar.gz xrdp-proprietary-0e9e25f100a70440dc54c18d4643ee74ba36840b.zip | |
use MS name for PDU types
RDP_PDU_REDIRECT has been removed as it is not found in MS-RDPBCGR and
not used anywhere.
Diffstat (limited to 'libxrdp/libxrdp.c')
| -rw-r--r-- | libxrdp/libxrdp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c index 2720fab2..f82ae953 100644 --- a/libxrdp/libxrdp.c +++ b/libxrdp/libxrdp.c @@ -230,10 +230,10 @@ libxrdp_process_data(struct xrdp_session *session, struct stream *s) case 0: dead_lock_counter++; break; - case RDP_PDU_CONFIRM_ACTIVE: /* 3 */ + case PDUTYPE_CONFIRMACTIVEPDU: xrdp_caps_process_confirm_active(rdp, s); break; - case RDP_PDU_DATA: /* 7 */ + case PDUTYPE_DATAPDU: if (xrdp_rdp_process_data(rdp, s) != 0) { DEBUG(("libxrdp_process_data returned non zero")); |
