diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-07-31 23:03:38 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-07-31 23:03:38 -0700 |
commit | f0a91c444d87bd09961185d888f87799ab817790 (patch) | |
tree | 821f80686ab9c4b5a17d0f67468e74b5f90a39e5 /xorg/server/module/rdpClientCon.h | |
parent | 635e2dba387b64a947a21b6334ab0a50e94e7407 (diff) | |
download | xrdp-proprietary-f0a91c444d87bd09961185d888f87799ab817790.tar.gz xrdp-proprietary-f0a91c444d87bd09961185d888f87799ab817790.zip |
xorg driver, add xrdp connection
Diffstat (limited to 'xorg/server/module/rdpClientCon.h')
-rw-r--r-- | xorg/server/module/rdpClientCon.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/xorg/server/module/rdpClientCon.h b/xorg/server/module/rdpClientCon.h new file mode 100644 index 00000000..fad17b68 --- /dev/null +++ b/xorg/server/module/rdpClientCon.h @@ -0,0 +1,38 @@ +/* +Copyright 2005-2013 Jay Sorg + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Client connection to xrdp + +*/ + +#ifndef _RDPCLIENTCON_H +#define _RDPCLIENTCON_H + +struct _rdpClientCon +{ + int sck; + int sckControlListener; + int sckControl; + struct _rdpClientCon *next; +}; + +int +rdpClientConCheck(ScreenPtr pScreen); + +#endif |