/Linux1.0/include/linux/socket.h

https://github.com/wanggx/Linux1.0 · C Header · 96 lines · 60 code · 16 blank · 20 comment · 0 complexity · c38f7078b65f52f868ee4dbc67ea35df MD5 · raw file

  1. #ifndef _LINUX_SOCKET_H
  2. #define _LINUX_SOCKET_H
  3. #include <linux/sockios.h> /* the SIOCxxx I/O controls */
  4. struct sockaddr {
  5. unsigned short sa_family; /* address family, AF_xxx */
  6. char sa_data[14]; /* 14 bytes of protocol address */
  7. };
  8. struct linger {
  9. int l_onoff; /* Linger active */
  10. int l_linger; /* How long to linger for */
  11. };
  12. /* Socket types. */
  13. #define SOCK_STREAM 1 /* stream (connection) socket */
  14. #define SOCK_DGRAM 2 /* datagram (conn.less) socket */
  15. #define SOCK_RAW 3 /* raw socket */
  16. #define SOCK_RDM 4 /* reliably-delivered message */
  17. #define SOCK_SEQPACKET 5 /* sequential packet socket */
  18. /* Äں˽«²»¶ÔÍøÂçÊý¾Ý½øÐд¦Àí¶øÖ±½Ó½»¸øÓû§£¬Êý¾ÝÖ±½Ó´ÓÍø¿¨µÄЭÒéÕ»½»¸øÓû§ */
  19. #define SOCK_PACKET 10 /* linux specific way of */
  20. /* getting packets at the dev */
  21. /* level. For writing rarp and */
  22. /* other similiar things on the */
  23. /* user level. */
  24. /* Supported address families. */
  25. #define AF_UNSPEC 0
  26. #define AF_UNIX 1
  27. #define AF_INET 2
  28. #define AF_AX25 3
  29. #define AF_IPX 4
  30. /* Protocol families, same as address families. */
  31. #define PF_UNIX AF_UNIX
  32. #define PF_INET AF_INET
  33. #define PF_AX25 AF_AX25
  34. #define PF_IPX AF_IPX
  35. /* Flags we can use with send/ and recv. */
  36. /* TCPµÄ´øÍâÊý¾Ý±ê¼Ç£¬Ò²¾ÍÊǽô¼±Êý¾Ý£¬TCPÔÚ½ÓÊÕµ½´øÍâÊý¾Ýʱ£¬ÐèÒªÓÅÏÈ´¦Àí
  37. * ÈçftpЭÒ飬¿Í»§¶Ë·¢ËÍÈ¡ÏûÎļþ´«ÊäµÄ´øÍâ½ô¼±Êý¾Ý
  38. */
  39. #define MSG_OOB 1
  40. /* ½ö½öÊÇÊý¾ÝÔ¤ÏȶÁÈ¡ºÍ¼ì²é£¬ÀýÈç¶ÁÈ¡Ò»¸öskb£¬µ«ÊDz»½«skb´Ó¶ÓÁÐÖÐɾ³ý */
  41. #define MSG_PEEK 2
  42. /* Setsockoptions(2) level. Thanks to BSD these must match IPPROTO_xxx */
  43. #define SOL_SOCKET 1 /* »ù±¾Ì×½Ó¿Ú */
  44. #define SOL_IP 0 /* ipÌ×½Ó¿Ú */
  45. #define SOL_IPX 256
  46. #define SOL_AX25 257
  47. #define SOL_TCP 6 /* tcpÌ×½Ó¿Ú */
  48. #define SOL_UDP 17 /* udpÌ×½Ó¿Ú */
  49. /* For setsockoptions(2) */
  50. #define SO_DEBUG 1
  51. #define SO_REUSEADDR 2
  52. #define SO_TYPE 3
  53. #define SO_ERROR 4
  54. #define SO_DONTROUTE 5
  55. #define SO_BROADCAST 6
  56. #define SO_SNDBUF 7
  57. #define SO_RCVBUF 8
  58. #define SO_KEEPALIVE 9
  59. #define SO_OOBINLINE 10
  60. #define SO_NO_CHECK 11
  61. #define SO_PRIORITY 12
  62. #define SO_LINGER 13
  63. /* IP options */
  64. #define IP_TOS 1
  65. #define IPTOS_LOWDELAY 0x10
  66. #define IPTOS_THROUGHPUT 0x08
  67. #define IPTOS_RELIABILITY 0x04
  68. #define IP_TTL 2
  69. /* IPX options */
  70. #define IPX_TYPE 1
  71. /* AX.25 options */
  72. #define AX25_WINDOW 1
  73. /* TCP options - this way around because someone left a set in the c library includes */
  74. #define TCP_NODELAY 1
  75. #define TCP_MAXSEG 2
  76. /* The various priorities. */
  77. #define SOPRI_INTERACTIVE 0
  78. #define SOPRI_NORMAL 1
  79. #define SOPRI_BACKGROUND 2
  80. #endif /* _LINUX_SOCKET_H */