Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.57 KB | None | 0 0
  1. /*
  2.  * Address families.
  3.  */
  4. #define AF_UNSPEC       0               /* unspecified */
  5. #define AF_UNIX         1               /* local to host (pipes, portals) */
  6. #define AF_INET         2               /* internetwork: UDP, TCP, etc. */
  7. #define AF_IMPLINK      3               /* arpanet imp addresses */
  8. #define AF_PUP          4               /* pup protocols: e.g. BSP */
  9. #define AF_CHAOS        5               /* mit CHAOS protocols */
  10. #define AF_IPX          6               /* IPX and SPX */
  11. #define AF_NS           6               /* XEROX NS protocols */
  12. #define AF_ISO          7               /* ISO protocols */
  13. #define AF_OSI          AF_ISO          /* OSI is ISO */
  14. #define AF_ECMA         8               /* european computer manufacturers */
  15. #define AF_DATAKIT      9               /* datakit protocols */
  16. #define AF_CCITT        10              /* CCITT protocols, X.25 etc */
  17. #define AF_SNA          11              /* IBM SNA */
  18. #define AF_DECnet       12              /* DECnet */
  19. #define AF_DLI          13              /* Direct data link interface */
  20. #define AF_LAT          14              /* LAT */
  21. #define AF_HYLINK       15              /* NSC Hyperchannel */
  22. #define AF_APPLETALK    16              /* AppleTalk */
  23. #define AF_NETBIOS      17              /* NetBios-style addresses */
  24. #define AF_VOICEVIEW    18              /* VoiceView */
  25. #define AF_FIREFOX      19              /* FireFox */
  26. #define AF_UNKNOWN1     20              /* Somebody is using this! */
  27. #define AF_BAN          21              /* Banyan */
  28.  
  29. #define AF_MAX          22
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement