diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2014-02-25 20:47:34 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2014-02-25 20:47:34 -0800 |
commit | e9e14f22f9eb97334bc75327d9f41c9f41a39dcc (patch) | |
tree | eabe8dc6291163ea558ca65747f93d767fa45625 /libxrdp/libxrdp.h | |
parent | f6fb5a32ed0ccc341eae749abd5b44cd2a73903c (diff) | |
download | xrdp-proprietary-e9e14f22f9eb97334bc75327d9f41c9f41a39dcc.tar.gz xrdp-proprietary-e9e14f22f9eb97334bc75327d9f41c9f41a39dcc.zip |
started work on fastpath, restructure PDU in
Diffstat (limited to 'libxrdp/libxrdp.h')
-rw-r--r-- | libxrdp/libxrdp.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libxrdp/libxrdp.h b/libxrdp/libxrdp.h index 07c166e6..d9e5e6d1 100644 --- a/libxrdp/libxrdp.h +++ b/libxrdp/libxrdp.h @@ -37,20 +37,13 @@ #include "file_loc.h" #include "xrdp_client_info.h" -/* tcp */ -struct xrdp_tcp -{ - struct trans* trans; - struct xrdp_iso* iso_layer; /* owner */ -}; - /* iso */ struct xrdp_iso { struct xrdp_mcs* mcs_layer; /* owner */ - struct xrdp_tcp* tcp_layer; int requestedProtocol; int selectedProtocol; + struct trans* trans; }; /* used in mcs */ |