diff options
author | speidy <speidy@gmail.com> | 2013-07-15 10:13:03 +0300 |
---|---|---|
committer | speidy <speidy@gmail.com> | 2013-07-15 10:13:03 +0300 |
commit | a8e5b3fee51604d68d8ecd36065396ba42c7be3f (patch) | |
tree | 297a0b4a64d6e53c55eee2f6e8e75b9ffa1afe24 /libxrdp/xrdp_mcs.c | |
parent | aab0176867552516a8358463e875cf437887f31c (diff) | |
download | xrdp-proprietary-a8e5b3fee51604d68d8ecd36065396ba42c7be3f.tar.gz xrdp-proprietary-a8e5b3fee51604d68d8ecd36065396ba42c7be3f.zip |
libxrdp: work on multi-mon support
Diffstat (limited to 'libxrdp/xrdp_mcs.c')
-rw-r--r-- | libxrdp/xrdp_mcs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libxrdp/xrdp_mcs.c b/libxrdp/xrdp_mcs.c index 4bf3d025..7d89766d 100644 --- a/libxrdp/xrdp_mcs.c +++ b/libxrdp/xrdp_mcs.c @@ -364,6 +364,7 @@ xrdp_mcs_recv_edrq(struct xrdp_mcs *self) int opcode; struct stream *s; + DEBUG((" in xrdp_mcs_recv_edrq")); make_stream(s); init_stream(s, 8192); @@ -396,6 +397,7 @@ xrdp_mcs_recv_edrq(struct xrdp_mcs *self) } free_stream(s); + DEBUG((" out xrdp_mcs_recv_edrq")); return 0; } @@ -407,6 +409,7 @@ xrdp_mcs_recv_aurq(struct xrdp_mcs *self) int opcode; struct stream *s; + DEBUG((" in xrdp_mcs_recv_aurq")); make_stream(s); init_stream(s, 8192); @@ -436,6 +439,7 @@ xrdp_mcs_recv_aurq(struct xrdp_mcs *self) } free_stream(s); + DEBUG((" out xrdp_mcs_recv_aurq")); return 0; } |