⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 osdep.h

📁 ftam等标准协议服务器和客户端的源代码。
💻 H
字号:
/***********************************************************Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,and the Massachusetts Institute of Technology, Cambridge, Massachusetts.                        All Rights ReservedPermission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and thatboth that copyright notice and this permission notice appear in supporting documentation, and that the names of Digital or MIT not beused in advertising or publicity pertaining to distribution of thesoftware without specific, written prior permission.  DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDINGALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALLDIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ORANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THISSOFTWARE.******************************************************************//* $XConsortium: osdep.h,v 1.15 88/09/06 15:50:47 jim Exp $ */#ifndef NULL#define NULL 0#endif#define BUFSIZE 4096#define BUFWATERMARK 8192#define MAXBUFSIZE (1 << 18)#if (NOFILE <= 128) /* 128 is value of MAXCLIENTS in dix layer */#define MAXSOCKS (NOFILE - 1)#else#define MAXSOCKS 128#endif#define mskcnt ((MAXSOCKS + 31) / 32)	/* size of bit array */#if (mskcnt==1)#define BITMASK(i) (1 << (i))#define MASKIDX(i) 0#endif#if (mskcnt>1)#define BITMASK(i) (1 << ((i) & 31))#define MASKIDX(i) ((i) >> 5)#endif#define MASKWORD(buf, i) buf[MASKIDX(i)]#define BITSET(buf, i) MASKWORD(buf, i) |= BITMASK(i)#define BITCLEAR(buf, i) MASKWORD(buf, i) &= ~BITMASK(i)#define GETBIT(buf, i) (MASKWORD(buf, i) & BITMASK(i))#if (mskcnt==1)#define COPYBITS(src, dst) dst[0] = src[0]#define CLEARBITS(buf) buf[0] = 0#define MASKANDSETBITS(dst, b1, b2) dst[0] = (b1[0] & b2[0])#define ORBITS(dst, b1, b2) dst[0] = (b1[0] | b2[0])#define UNSETBITS(dst, b1) (dst[0] &= ~b1[0])#define ANYSET(src) (src[0])#endif#if (mskcnt==2)#define COPYBITS(src, dst) dst[0] = src[0]; dst[1] = src[1]#define CLEARBITS(buf) buf[0] = 0; buf[1] = 0#define MASKANDSETBITS(dst, b1, b2)  \		      dst[0] = (b1[0] & b2[0]);\		      dst[1] = (b1[1] & b2[1])#define ORBITS(dst, b1, b2)  \		      dst[0] = (b1[0] | b2[0]);\		      dst[1] = (b1[1] | b2[1])#define UNSETBITS(dst, b1) \                      dst[0] &= ~b1[0]; \                      dst[1] &= ~b1[1]#define ANYSET(src) (src[0] || src[1])#endif#if (mskcnt==3)#define COPYBITS(src, dst) dst[0] = src[0]; dst[1] = src[1]; dst[2] = src[2];#define CLEARBITS(buf) buf[0] = 0; buf[1] = 0; buf[2] = 0#define MASKANDSETBITS(dst, b1, b2)  \		      dst[0] = (b1[0] & b2[0]);\		      dst[1] = (b1[1] & b2[1]);\		      dst[2] = (b1[2] & b2[2])#define ORBITS(dst, b1, b2)  \		      dst[0] = (b1[0] | b2[0]);\		      dst[1] = (b1[1] | b2[1]);\		      dst[2] = (b1[2] | b2[2])#define UNSETBITS(dst, b1) \                      dst[0] &= ~b1[0]; \                      dst[1] &= ~b1[1]; \                      dst[2] &= ~b1[2]#define ANYSET(src) (src[0] || src[1] || src[2])#endif#if (mskcnt==4)#define COPYBITS(src, dst) dst[0] = src[0]; dst[1] = src[1]; dst[2] = src[2];\		      dst[3] = src[3]#define CLEARBITS(buf) buf[0] = 0; buf[1] = 0; buf[2] = 0; buf[3] = 0#define MASKANDSETBITS(dst, b1, b2)  \                      dst[0] = (b1[0] & b2[0]);\                      dst[1] = (b1[1] & b2[1]);\                      dst[2] = (b1[2] & b2[2]);\                      dst[3] = (b1[3] & b2[3])#define ORBITS(dst, b1, b2)  \                      dst[0] = (b1[0] | b2[0]);\                      dst[1] = (b1[1] | b2[1]);\                      dst[2] = (b1[2] | b2[2]);\                      dst[3] = (b1[3] | b2[3])#define UNSETBITS(dst, b1) \                      dst[0] &= ~b1[0]; \                      dst[1] &= ~b1[1]; \                      dst[2] &= ~b1[2]; \                      dst[3] &= ~b1[3]#define ANYSET(src) (src[0] || src[1] || src[2] || src[3])#endif#if (mskcnt>4)#define COPYBITS(src, dst) bcopy((caddr_t) src, (caddr_t) dst,\				 mskcnt*sizeof(long))#define CLEARBITS(buf) bzero((caddr_t) buf, mskcnt*sizeof(long))#define MASKANDSETBITS(dst, b1, b2)  \		      { int cri;			\			for (cri=0; cri<mskcnt; cri++)	\		          dst[cri] = (b1[cri] & b2[cri]) }#define ORBITS(dst, b1, b2)  \		      { int cri;			\		      for (cri=0; cri<mskcnt; cri++)	\		          dst[cri] = (b1[cri] | b2[cri]) }#define UNSETBITS(dst, b1) \		      { int cri;			\		      for (cri=0; cri<mskcnt; cri++)	\		          dst[cri] &= ~b1[cri];  }/* * If mskcnt>4, then ANYSET is a routine defined in WaitFor.c. * * #define ANYSET(src) (src[0] || src[1] || src[2] || src[3] || src[4] ...) */#endiftypedef struct _connectionInput {    int used;                  /* is this client connected */    char *buffer;               /* contains current client input */    char *bufptr;               /* pointer to current start of data */    int  bufcnt;                /* count of bytes in buffer */    int lenLastReq;    int size;} ConnectionInput;typedef struct _osComm {    int fd;    unsigned char *buf;    int bufsize;    int count;} OsCommRec, *OsCommPtr;void Notice();#ifdef ISOCONN#ifdef ISODEBUGextern int isodexbug;#endif /* ISODEBUG *//* * For want of a better place to put these for the moment... *  * Should really appear in system headers eventuallement */#define FamilyIso 3#define UNIX_IO 0#define ISODE_IO 1/* * The following could all be optimised by putting it in the  * OsCommRec * so we would not have to double array index for every IO... *  * but i'm not sure that that rec is available in all IO call places */extern int fd2family[];extern int (*acceptfn[])(); extern int (*getpeerfn[])(); extern int (*readfn[])(); extern int (*writefn[])(); extern int (*readvfn[])(); extern int (*writevfn[])(); extern int (*closefn[])(); #define SAccept(fd, a, b) \acceptfn[fd2family[fd]]((fd), (a), (b))#define SGetPeerName(fd, ptr, len) \getpeerfn[fd2family[(fd)]]((fd), (ptr), (len))#define SRead(fd, data, size, dum) \readfn[fd2family[(fd)]]((fd), (data), (size), (dum))#define SWrite(fd, data, size) \writefn[fd2family[(fd)]]((fd), (data), (size))#define SWritev(fd, iov, iovcnt) \writevfn[fd2family[(fd)]]((fd), (iov), (iovcnt))#define SClose(fd) \closefn[fd2family[(fd)]]((fd))#endif /* ISOCONN */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -