diff options
author | alanh <alanh> | 2003-09-12 22:16:41 +0000 |
---|---|---|
committer | alanh <alanh> | 2003-09-12 22:16:41 +0000 |
commit | 8c5e0abe8c54c3569a7850d7a96dedff6d9b76d2 (patch) | |
tree | 671ae4f27f32906f7b45125fc5993ac3fef8615c /xc/lib/Xdmcp/WC16.c | |
parent | b695bad46a086aba2a97818447d14f7b3ef9d770 (diff) |
xc/programs/Xserver/os now has a dependency on the newer lib/Xdmcp/Xdmcp.h
header file due to the IPv6 changes.
So we now import libXdmcp and turn this on.
Diffstat (limited to 'xc/lib/Xdmcp/WC16.c')
-rw-r--r-- | xc/lib/Xdmcp/WC16.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/xc/lib/Xdmcp/WC16.c b/xc/lib/Xdmcp/WC16.c new file mode 100644 index 000000000..738d6588e --- /dev/null +++ b/xc/lib/Xdmcp/WC16.c @@ -0,0 +1,47 @@ +/* + * $Xorg: WC16.c,v 1.4 2001/02/09 02:03:48 xorgcvs Exp $ + * + * +Copyright 1989, 1998 The Open Group + +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. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. + * * + * Author: Keith Packard, MIT X Consortium + */ + +/* $XFree86: xc/lib/Xdmcp/WC16.c,v 1.5 2001/12/14 19:54:55 dawes Exp $ */ + +#include <X11/Xos.h> +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xdmcp.h> + +int +XdmcpWriteCARD16 ( + XdmcpBufferPtr buffer, + unsigned value) +{ + if (!XdmcpWriteCARD8 (buffer, value >> 8)) + return FALSE; + if (!XdmcpWriteCARD8 (buffer, value & 0xff)) + return FALSE; + return TRUE; +} |