home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / network / src_1218.zip / USOCK.H < prev    next >
C/C++ Source or Header  |  1991-03-16  |  2KB  |  110 lines

  1. #ifndef    _USOCK_H
  2. #define    _USOCK_H
  3.  
  4. #ifndef    _MBUF_H
  5. #include "mbuf.h"
  6. #endif
  7.  
  8. #ifndef    _LZW_H
  9. #include "lzw.h"
  10. #endif
  11.  
  12. #ifndef _PROC_H
  13. #include "proc.h"
  14. #endif
  15.  
  16. #ifndef _TCP_H
  17. #include "tcp.h"
  18. #endif
  19.  
  20. #ifndef _UDP_H
  21. #include "udp.h"
  22. #endif
  23.  
  24. #ifndef _IP_H
  25. #include "ip.h"
  26. #endif
  27.  
  28. #ifndef _NETROM_H
  29. #include "netrom.h"
  30. #endif
  31.  
  32. #ifndef _SOCKADDR_H
  33. #include "sockaddr.h"
  34. #endif
  35.  
  36. struct loc {
  37.     struct usock *peer;
  38.     struct mbuf *q;
  39.     int hiwat;        /* Flow control point */
  40.     int flags;
  41. #define    LOC_SHUTDOWN    1
  42. };
  43. #define    NULLLOC    (struct loc *)0
  44. #define    LOCDFLOW    5    /* dgram socket flow-control point, packets */
  45. #define    LOCSFLOW    2048    /* stream socket flow control point, bytes */
  46. #define    SOBUF        256    /* Size of buffer for usputc()/usprintf() */
  47. #define    SOCKBASE    128    /* Start of socket indexes */
  48.  
  49. union sp {
  50.         struct sockaddr *sa;
  51.         struct sockaddr_in *in;
  52.         struct sockaddr_ax *ax;
  53.         struct sockaddr_nr *nr;
  54.         char *p;
  55. };
  56.  
  57. union cb {
  58.     struct tcb *tcb;
  59.     struct ax25_cb *ax25;
  60.     struct udp_cb *udp;
  61.     struct raw_ip *rip;
  62.     struct raw_nr *rnr;
  63.     struct nr4cb *nr4;
  64.     struct loc *local;
  65.     char *p;
  66. };
  67.  
  68. /* User sockets */
  69. struct usock {
  70.     struct proc *owner;
  71.     int refcnt;
  72.     char noblock;
  73.     char type;
  74. #define    NOTUSED            0
  75. #define    TYPE_TCP        1
  76. #define    TYPE_UDP        2
  77. #define    TYPE_AX25I        3
  78. #define    TYPE_AX25UI        4
  79. #define TYPE_RAW        5
  80. #define TYPE_NETROML3        6
  81. #define TYPE_NETROML4        7
  82. #define    TYPE_LOCAL_STREAM    8
  83. #define    TYPE_LOCAL_DGRAM    9
  84.     int rdysock;
  85.     union cb cb;
  86.     char *name;
  87.     int namelen;
  88.     char *peername;
  89.     int peernamelen;
  90.     char errcodes[4];    /* Protocol-specific error codes */
  91.     struct mbuf *obuf;    /* Output buffer */
  92.     struct mbuf *ibuf;    /* Input buffer */
  93.     char eol[3];        /* Text mode end-of-line sequence, if any */
  94.     int flag;        /* Mode flags, defined in socket.h */
  95.     int flush;        /* Character to trigger flush, if any */
  96.     struct lzw *zout;    /* Pointer to compression structure */
  97.     struct lzw *zin;
  98. };
  99. #define    NULLUSOCK    ((struct usock *)0)
  100.  
  101. extern char Badsocket[];
  102. extern char *Socktypes[];
  103. extern struct usock *Usock;
  104. extern int Nusock;
  105.  
  106. struct usock *itop __ARGS((int s));
  107. void st_garbage __ARGS((int red));
  108.  
  109. #endif /* _USOCK_H */
  110.