summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2013-10-17 21:03:21 -0700
committerJay Sorg <jay.sorg@gmail.com>2013-10-17 21:03:21 -0700
commit9d8d31d02a31470c15b61b05a1c52851d1f33ef0 (patch)
tree82f1cfc6737b9a2c376ccdb8777b433fe807465f
parentdf8e6eea137d688f223d35c451a96ea2bb294b1b (diff)
downloadxrdp-proprietary-9d8d31d02a31470c15b61b05a1c52851d1f33ef0.tar.gz
xrdp-proprietary-9d8d31d02a31470c15b61b05a1c52851d1f33ef0.zip
common: restore xrdp_client_info order
-rw-r--r--common/xrdp_client_info.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/common/xrdp_client_info.h b/common/xrdp_client_info.h
index effac271..a9d34ec6 100644
--- a/common/xrdp_client_info.h
+++ b/common/xrdp_client_info.h
@@ -38,7 +38,6 @@ struct xrdp_client_info
int bitmap_cache_version; /* ored 1 = original version, 2 = v2, 4 = v3 */
/* pointer info */
int pointer_cache_entries;
- int pointer_flags; /* 0 color, 1 new, 2 no new */
/* other */
int use_bitmap_comp;
int use_bitmap_cache;
@@ -70,8 +69,6 @@ struct xrdp_client_info
int offscreen_cache_size;
int offscreen_cache_entries;
int rfx;
- int nego_sec_layer; /* 0, 1, 2 = RDP security layer, TLS , Negotiate */
- int multimon; /* 0 = deny , 1 = allow */
/* CAPSETTYPE_RAIL */
int rail_support_level;
@@ -94,10 +91,15 @@ struct xrdp_client_info
char orders[32];
int order_flags_ex;
int use_bulk_comp;
+ int pointer_flags; /* 0 color, 1 new, 2 no new */
int use_fast_path;
int require_credentials; /* when true, credentials *must* be passed on cmd line */
char client_addr[256];
char client_port[256];
+
+ int nego_sec_layer; /* 0, 1, 2 = RDP security layer, TLS , Negotiate */
+ int multimon; /* 0 = deny , 1 = allow */
+
};
#endif