/linux/include/linux/socket.h

https://github.com/shattered/linux-m68k · C Header · 147 lines · 106 code · 19 blank · 22 comment · 0 complexity · b7a0fae2e7f05329292d7214e4b3868c MD5 · raw file

  1. #ifndef _LINUX_SOCKET_H
  2. #define _LINUX_SOCKET_H
  3. #include <asm/socket.h> /* arch-dependent defines */
  4. #include <linux/sockios.h> /* the SIOCxxx I/O controls */
  5. #include <linux/uio.h> /* iovec support */
  6. struct sockaddr
  7. {
  8. unsigned short sa_family; /* address family, AF_xxx */
  9. char sa_data[14]; /* 14 bytes of protocol address */
  10. };
  11. struct linger {
  12. int l_onoff; /* Linger active */
  13. int l_linger; /* How long to linger for */
  14. };
  15. /*
  16. * As we do 4.4BSD message passing we use a 4.4BSD message passing
  17. * system, not 4.3. Thus msg_accrights(len) are now missing. They
  18. * belong in an obscure libc emulation or the bin.
  19. */
  20. struct msghdr
  21. {
  22. void * msg_name; /* Socket name */
  23. int msg_namelen; /* Length of name */
  24. struct iovec * msg_iov; /* Data blocks */
  25. int msg_iovlen; /* Number of blocks */
  26. void * msg_control; /* Per protocol magic (eg BSD file descriptor passing) */
  27. int msg_controllen; /* Length of rights list */
  28. int msg_flags; /* 4.4 BSD item we dont use */
  29. };
  30. /* Control Messages */
  31. #define SCM_RIGHTS 1
  32. /* Socket types. */
  33. #define SOCK_STREAM 1 /* stream (connection) socket */
  34. #define SOCK_DGRAM 2 /* datagram (conn.less) socket */
  35. #define SOCK_RAW 3 /* raw socket */
  36. #define SOCK_RDM 4 /* reliably-delivered message */
  37. #define SOCK_SEQPACKET 5 /* sequential packet socket */
  38. #define SOCK_PACKET 10 /* linux specific way of */
  39. /* getting packets at the dev */
  40. /* level. For writing rarp and */
  41. /* other similar things on the */
  42. /* user level. */
  43. /* Supported address families. */
  44. #define AF_UNSPEC 0
  45. #define AF_UNIX 1 /* Unix domain sockets */
  46. #define AF_INET 2 /* Internet IP Protocol */
  47. #define AF_AX25 3 /* Amateur Radio AX.25 */
  48. #define AF_IPX 4 /* Novell IPX */
  49. #define AF_APPLETALK 5 /* Appletalk DDP */
  50. #define AF_NETROM 6 /* Amateur radio NetROM */
  51. #define AF_BRIDGE 7 /* Multiprotocol bridge */
  52. #define AF_AAL5 8 /* Reserved for Werner's ATM */
  53. #define AF_X25 9 /* Reserved for X.25 project */
  54. #ifdef LINUX_2_1_X
  55. #define AF_INET6 10 /* IP version 6 */
  56. #endif
  57. #define AF_ROSE 11 /* Amateur Radio X.25 PLP */
  58. #define AF_MAX 13 /* For now.. */
  59. #define AF_PACKET 17 /* Forward compat hook */
  60. /* Protocol families, same as address families. */
  61. #define PF_UNSPEC AF_UNSPEC
  62. #define PF_UNIX AF_UNIX
  63. #define PF_INET AF_INET
  64. #define PF_AX25 AF_AX25
  65. #define PF_IPX AF_IPX
  66. #define PF_APPLETALK AF_APPLETALK
  67. #define PF_NETROM AF_NETROM
  68. #define PF_BRIDGE AF_BRIDGE
  69. #define PF_AAL5 AF_AAL5
  70. #define PF_X25 AF_X25
  71. #ifdef LINUX_2_1_X
  72. #define PF_INET6 AF_INET6
  73. #endif
  74. #define PF_ROSE AF_ROSE
  75. #define PF_MAX AF_MAX
  76. #define PF_PACKET AF_PACKET
  77. /* Maximum queue length specifiable by listen. */
  78. #define SOMAXCONN 128
  79. /* Flags we can use with send/ and recv. */
  80. #define MSG_OOB 1
  81. #define MSG_PEEK 2
  82. #define MSG_DONTROUTE 4
  83. /*#define MSG_CTRUNC 8 - We need to support this for BSD oddments */
  84. #define MSG_PROXY 16 /* Supply or ask second address. */
  85. /* Setsockoptions(2) level. Thanks to BSD these must match IPPROTO_xxx */
  86. #define SOL_IP 0
  87. #define SOL_IPX 256
  88. #define SOL_AX25 257
  89. #define SOL_ATALK 258
  90. #define SOL_NETROM 259
  91. #define SOL_ROSE 260
  92. #define SOL_TCP 6
  93. #define SOL_UDP 17
  94. /* IP options */
  95. #define IP_TOS 1
  96. #define IPTOS_LOWDELAY 0x10
  97. #define IPTOS_THROUGHPUT 0x08
  98. #define IPTOS_RELIABILITY 0x04
  99. #define IPTOS_MINCOST 0x02
  100. #define IP_TTL 2
  101. #define IP_HDRINCL 3
  102. #define IP_OPTIONS 4
  103. #define IP_MULTICAST_IF 32
  104. #define IP_MULTICAST_TTL 33
  105. #define IP_MULTICAST_LOOP 34
  106. #define IP_ADD_MEMBERSHIP 35
  107. #define IP_DROP_MEMBERSHIP 36
  108. /* These need to appear somewhere around here */
  109. #define IP_DEFAULT_MULTICAST_TTL 1
  110. #define IP_DEFAULT_MULTICAST_LOOP 1
  111. #define IP_MAX_MEMBERSHIPS 20
  112. /* IPX options */
  113. #define IPX_TYPE 1
  114. /* TCP options - this way around because someone left a set in the c library includes */
  115. #define TCP_NODELAY 1
  116. #define TCP_MAXSEG 2
  117. /* The various priorities. */
  118. #define SOPRI_INTERACTIVE 0
  119. #define SOPRI_NORMAL 1
  120. #define SOPRI_BACKGROUND 2
  121. #ifdef __KERNEL__
  122. extern void memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len);
  123. extern int verify_iovec(struct msghdr *m, struct iovec *iov, char *address, int mode);
  124. extern void memcpy_toiovec(struct iovec *v, unsigned char *kdata, int len);
  125. extern int move_addr_to_user(void *kaddr, int klen, void *uaddr, int *ulen);
  126. extern int move_addr_to_kernel(void *uaddr, int ulen, void *kaddr);
  127. #endif
  128. #endif /* _LINUX_SOCKET_H */