diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-04-14 18:19:43 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-04-14 18:19:43 -0700 |
commit | ff6e8a12329016cb426640670047eb679403c62c (patch) | |
tree | bd443d70c415a4249419e686949e7ab232ca7dac /xorg/X11R7.6 | |
parent | 6333cdd86564f103d1e500e9c2857663d8c68f81 (diff) | |
download | xrdp-proprietary-ff6e8a12329016cb426640670047eb679403c62c.tar.gz xrdp-proprietary-ff6e8a12329016cb426640670047eb679403c62c.zip |
xorg: added start of X11rdp / xup caps
Diffstat (limited to 'xorg/X11R7.6')
-rw-r--r-- | xorg/X11R7.6/rdp/rdp.h | 10 | ||||
-rw-r--r-- | xorg/X11R7.6/rdp/rdpup.c | 65 |
2 files changed, 73 insertions, 2 deletions
diff --git a/xorg/X11R7.6/rdp/rdp.h b/xorg/X11R7.6/rdp/rdp.h index 5db8d194..9548f76b 100644 --- a/xorg/X11R7.6/rdp/rdp.h +++ b/xorg/X11R7.6/rdp/rdp.h @@ -508,3 +508,13 @@ struct stream { \ (s) = (struct stream*)g_malloc(sizeof(struct stream), 1); \ } + +/******************************************************************************/ +#define free_stream(s) do \ +{ \ + if ((s) != 0) \ + { \ + g_free((s)->data); \ + } \ + g_free((s)); \ +} while (0) diff --git a/xorg/X11R7.6/rdp/rdpup.c b/xorg/X11R7.6/rdp/rdpup.c index b70eb8cd..c0845a2e 100644 --- a/xorg/X11R7.6/rdp/rdpup.c +++ b/xorg/X11R7.6/rdp/rdpup.c @@ -153,7 +153,7 @@ rdpup_send_msg(struct stream* s) rv = 1; if (s != 0) { - len = s->end - s->data; + len = (int)(s->end - s->data); if (len > s->size) { rdpLog("overrun error len %d count %d\n", len, g_count); @@ -347,6 +347,64 @@ l_bound_by(int val, int low, int high) /******************************************************************************/ static int +rdpup_send_caps(void) +{ + struct stream* ls; + int len; + int rv; + int cap_count; + int cap_bytes; + + make_stream(ls); + init_stream(ls, 8192); + s_push_layer(ls, iso_hdr, 8); + + cap_count = 0; + cap_bytes = 0; + +#if 0 + out_uint16_le(ls, 0); + out_uint16_le(ls, 4); + cap_count++; + cap_bytes += 4; + + out_uint16_le(ls, 1); + out_uint16_le(ls, 4); + cap_count++; + cap_bytes += 4; +#endif + + s_mark_end(ls); + len = (int)(ls->end - ls->data); + s_pop_layer(ls, iso_hdr); + out_uint16_le(ls, 2); /* caps */ + out_uint16_le(ls, cap_count); /* num caps */ + out_uint32_le(ls, cap_bytes); /* caps len after header */ + + rv = rdpup_send(ls->data, len); + if (rv != 0) + { + ErrorF("rdpup_send_caps: rdpup_send failed\n"); + } + free_stream(ls); + return rv; +} + +/******************************************************************************/ +static int +process_version_msg(int param1, int param2, int param3, int param4) +{ + ErrorF("process_version_msg: version %d %d %d %d\n", param1, param2, + param3, param4); + if ((param1 > 0) || (param2 > 0) || (param3 > 0) || (param4 > 0)) + { + rdpup_send_caps(); + } + return 0; +} + +/******************************************************************************/ +static int rdpup_process_msg(struct stream* s) { int msg_type; @@ -431,6 +489,9 @@ param4 %d\n", msg, param1, param2, param3, param4)); case 300: process_screen_size_msg(param1, param2, param3); break; + case 301: + process_version_msg(param1, param2, param3, param4); + break; } } else @@ -466,7 +527,7 @@ rdpup_init(void) make_stream(g_in_s); init_stream(g_in_s, 8192); } - if (g_out_s == 0) + if (g_out_s == 0) { make_stream(g_out_s); init_stream(g_out_s, 8192 * g_Bpp + 100); |