summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspeidy <speidy@gmail.com>2014-04-21 16:57:06 +0300
committerspeidy <speidy@gmail.com>2014-04-21 16:57:06 +0300
commit702f76c078bc1fa9c071de8b836c0781a3470a2f (patch)
tree3fc716f2684a0190679a10d86d6368e3862fc7a6
parent8f597584f2a176ee5d79b9ebee351120e8e2a14d (diff)
downloadxrdp-proprietary-702f76c078bc1fa9c071de8b836c0781a3470a2f.tar.gz
xrdp-proprietary-702f76c078bc1fa9c071de8b836c0781a3470a2f.zip
libxrdp: xrdp_channel: don't change channel flags when
CHANNEL_OPTION_SHOW_PROTOCOL flag exists. [according to doc: http://msdn.microsoft.com/en-us/library/cc240513.aspx]
-rw-r--r--libxrdp/xrdp_channel.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/libxrdp/xrdp_channel.c b/libxrdp/xrdp_channel.c
index 198b876b..7d3909d5 100644
--- a/libxrdp/xrdp_channel.c
+++ b/libxrdp/xrdp_channel.c
@@ -105,10 +105,21 @@ xrdp_channel_send(struct xrdp_channel *self, struct stream *s, int channel_id,
s_pop_layer(s, channel_hdr);
out_uint32_le(s, total_data_len);
- if (channel->flags & XR_CHANNEL_OPTION_SHOW_PROTOCOL)
- {
- flags |= CHANNEL_FLAG_SHOW_PROTOCOL;
- }
+ /*
+ * According to 2.2.1.3.4.1 Channel Definition Structure (CHANNEL_DEF):
+ * CHANNEL_OPTION_SHOW_PROTOCOL 0x00200000
+ * The value of this flag MUST be ignored by the server. The
+ * visibility of the Channel PDU Header (section 2.2.6.1.1) is
+ * determined by the CHANNEL_FLAG_SHOW_PROTOCOL
+ * (0x00000010) flag as defined in the flags field (section
+ * 2.2.6.1.1).
+ *
+ * That's flag makes MSTSC crash when using RAIL channel.
+ */
+// if (channel->flags & XR_CHANNEL_OPTION_SHOW_PROTOCOL)
+// {
+// flags |= CHANNEL_FLAG_SHOW_PROTOCOL;
+// }
out_uint32_le(s, flags);