1bbe1b32bSmrg/* 2bbe1b32bSmrgCopyright 1987, 1998 The Open Group 3bbe1b32bSmrg 4bbe1b32bSmrgPermission to use, copy, modify, distribute, and sell this software and its 5bbe1b32bSmrgdocumentation for any purpose is hereby granted without fee, provided that 6bbe1b32bSmrgthe above copyright notice appear in all copies and that both that 7bbe1b32bSmrgcopyright notice and this permission notice appear in supporting 8bbe1b32bSmrgdocumentation. 9bbe1b32bSmrg 10bbe1b32bSmrgThe above copyright notice and this permission notice shall be included in 11bbe1b32bSmrgall copies or substantial portions of the Software. 12bbe1b32bSmrg 13bbe1b32bSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14bbe1b32bSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15bbe1b32bSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16bbe1b32bSmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 17bbe1b32bSmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 18bbe1b32bSmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 19bbe1b32bSmrg 20bbe1b32bSmrgExcept as contained in this notice, the name of The Open Group shall not be 21bbe1b32bSmrgused in advertising or otherwise to promote the sale, use or other dealings 22bbe1b32bSmrgin this Software without prior written authorization from The Open Group. 23bbe1b32bSmrg * Copyright 1990, 1991 Network Computing Devices; 24bbe1b32bSmrg * Portions Copyright 1987 by Digital Equipment Corporation 25bbe1b32bSmrg * 26bbe1b32bSmrg * Permission to use, copy, modify, distribute, and sell this software and its 27bbe1b32bSmrg * documentation for any purpose is hereby granted without fee, provided that 28bbe1b32bSmrg * the above copyright notice appear in all copies and that both that 29bbe1b32bSmrg * copyright notice and this permission notice appear in supporting 30bbe1b32bSmrg * documentation, and that the names of Network Computing Devices, 31bbe1b32bSmrg * or Digital not be used in advertising or 32bbe1b32bSmrg * publicity pertaining to distribution of the software without specific, 33bbe1b32bSmrg * written prior permission. Network Computing Devices, or Digital 34bbe1b32bSmrg * make no representations about the 35bbe1b32bSmrg * suitability of this software for any purpose. It is provided "as is" 36bbe1b32bSmrg * without express or implied warranty. 37bbe1b32bSmrg * 38bbe1b32bSmrg * NETWORK COMPUTING DEVICES, AND DIGITAL DISCLAIM ALL WARRANTIES WITH 39bbe1b32bSmrg * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 40bbe1b32bSmrg * AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES, OR DIGITAL BE 41bbe1b32bSmrg * LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 42bbe1b32bSmrg * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 43bbe1b32bSmrg * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 44bbe1b32bSmrg * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 45bbe1b32bSmrg * 46bbe1b32bSmrg */ 47bbe1b32bSmrg 48bbe1b32bSmrg#ifndef _GLOBALS_H_ 49bbe1b32bSmrg#define _GLOBALS_H_ 50bbe1b32bSmrg 51bbe1b32bSmrg#include <X11/fonts/FSproto.h> /* for fsResolution */ 52ce6676dbSmrg#include <X11/Xtrans/Xtrans.h> /* XtransConnInfo */ 5340c5823bSmrg#include <X11/fonts/libxfont2.h> /* xfont2_pattern_cache_ptr */ 54ce6676dbSmrg#include <X11/Xpoll.h> /* select & fd_set */ 55ce6676dbSmrg#include "client.h" /* WorkQueuePtr */ 56ce6676dbSmrg#include "misc.h" /* OldListenRec */ 57bbe1b32bSmrg 58bbe1b32bSmrgextern long TimeOutValue; 59bbe1b32bSmrgextern long ReapClientTime; 60bbe1b32bSmrg 61bbe1b32bSmrgextern int currentMaxClients; 62bbe1b32bSmrgextern long MaxClients; 63bbe1b32bSmrgextern int serverGeneration; 64bbe1b32bSmrg 65bbe1b32bSmrgextern volatile char isItTimeToYield; 66bbe1b32bSmrgextern volatile char dispatchException; 67bbe1b32bSmrg 68bbe1b32bSmrgextern int argcGlobal; 69bbe1b32bSmrgextern char **argvGlobal; 70bbe1b32bSmrg 71ce6676dbSmrgextern WorkQueuePtr workQueue; 72ce6676dbSmrg 73ce6676dbSmrgextern fd_set WellKnownConnections; 74ce6676dbSmrgextern fd_set LastSelectMask; 75ce6676dbSmrgextern fd_set WriteMask; 76ce6676dbSmrgextern fd_set ClientsWithInput; 77ce6676dbSmrgextern fd_set ClientsWriteBlocked; 78ce6676dbSmrgextern fd_set AllSockets; 79ce6676dbSmrgextern fd_set AllClients; 80ce6676dbSmrgextern fd_set OutputPending; 81ce6676dbSmrg 82ce6676dbSmrgextern Bool AnyClientsWriteBlocked; 83ce6676dbSmrgextern Bool NewOutputPending; 84ce6676dbSmrg 85ce6676dbSmrgextern int ConnectionTranslation[]; 86ce6676dbSmrg 8740c5823bSmrgextern xfont2_pattern_cache_ptr fontPatternCache; 88ce6676dbSmrg 89ce6676dbSmrgextern long LastReapTime; 90ce6676dbSmrgextern Bool drone_server; 91ce6676dbSmrgextern char *progname; 92ce6676dbSmrgextern char *configfilename; 93ce6676dbSmrg 94ce6676dbSmrgextern XtransConnInfo *ListenTransConns; 95ce6676dbSmrgextern int *ListenTransFds; 96ce6676dbSmrgextern int ListenTransCount; 97ce6676dbSmrg 98ce6676dbSmrgextern OldListenRec *OldListen; 99ce6676dbSmrgextern int OldListenCount; 100ce6676dbSmrg 101ce6676dbSmrgextern Bool portFromCmdline; 102ce6676dbSmrg 103ce6676dbSmrgextern char *ConnectionInfo; 104ce6676dbSmrgextern int ConnInfoLen; 105ce6676dbSmrg 106ce6676dbSmrgextern long OutputBufferSize; 107ce6676dbSmrg 108bbe1b32bSmrg/* bit values for dispatchException */ 109bbe1b32bSmrg#define DE_RESET 0x1 110bbe1b32bSmrg#define DE_TERMINATE 0x2 111bbe1b32bSmrg#define DE_RECONFIG 0x4 112bbe1b32bSmrg#define DE_FLUSH 0x8 113bbe1b32bSmrg 114bbe1b32bSmrg/* size of vector tables */ 115bbe1b32bSmrg#define NUM_PROC_VECTORS 25 116bbe1b32bSmrg#define NUM_EVENT_VECTORS 8 117bbe1b32bSmrg#endif /* _GLOBALS_H_ */ 118