diff options
author | LawrenceK <github@lklyne.co.uk> | 2012-12-20 09:08:14 +0000 |
---|---|---|
committer | LawrenceK <github@lklyne.co.uk> | 2012-12-20 16:21:50 +0000 |
commit | 4c189ec3b488d7fb57966cce23ceb20dfa7a4cae (patch) | |
tree | f50627256ff6d3de2ee27af525da8348b1609da9 /libxrdp | |
parent | cc03ff6704f55ac570dc0b5abc7ed1407f086364 (diff) | |
download | xrdp-proprietary-4c189ec3b488d7fb57966cce23ceb20dfa7a4cae.tar.gz xrdp-proprietary-4c189ec3b488d7fb57966cce23ceb20dfa7a4cae.zip |
update/fix some debug log calls and add the test of XRDP_DEBUG to make files so controlled by the autoconf option --enable-xrdpdebug
Diffstat (limited to 'libxrdp')
-rw-r--r-- | libxrdp/libxrdp.c | 2 | ||||
-rw-r--r-- | libxrdp/xrdp_mcs.c | 2 | ||||
-rw-r--r-- | libxrdp/xrdp_rdp.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/libxrdp/libxrdp.c b/libxrdp/libxrdp.c index a391b93b..d4c9d372 100644 --- a/libxrdp/libxrdp.c +++ b/libxrdp/libxrdp.c @@ -744,6 +744,7 @@ libxrdp_query_channel(struct xrdp_session *session, int index, if (index < 0 || index >= count) { + DEBUG(("libxrdp_query_channel - Channel out of range %d", index)); return 1; } @@ -760,6 +761,7 @@ libxrdp_query_channel(struct xrdp_session *session, int index, if (channel_name != 0) { g_strncpy(channel_name, channel_item->name, 8); + DEBUG(("libxrdp_query_channel - Channel %d name %s", index, channel_name)); } if (channel_flags != 0) diff --git a/libxrdp/xrdp_mcs.c b/libxrdp/xrdp_mcs.c index a2793960..77c0d10d 100644 --- a/libxrdp/xrdp_mcs.c +++ b/libxrdp/xrdp_mcs.c @@ -144,9 +144,9 @@ xrdp_mcs_recv(struct xrdp_mcs *self, struct stream *s, int *chan) /* this is channels getting added from the client */ if (appid == MCS_CJRQ) { - g_writeln("channel join request received"); in_uint16_be(s, userid); in_uint16_be(s, chanid); + g_writeln("channel join request received %d:%d", userid, chanid); DEBUG(("xrdp_mcs_recv adding channel %4.4x", chanid)); if (xrdp_mcs_send_cjcf(self, userid, chanid) != 0) diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index defc7624..44a7ac57 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -454,7 +454,7 @@ xrdp_rdp_send_data(struct xrdp_rdp *self, struct stream *s, } else { - g_writeln("mppc_encode not ok"); + g_writeln("mppc_encode not ok: type %d flags %d", mppc_enc->protocol_type, mppc_enc->flags); } } |