socket.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * include/asm-xtensa/socket.h
  3. *
  4. * Copied from i386.
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #ifndef _XTENSA_SOCKET_H
  11. #define _XTENSA_SOCKET_H
  12. #include <asm/sockios.h>
  13. /* For setsockoptions(2) */
  14. #define SOL_SOCKET 1
  15. #define SO_DEBUG 1
  16. #define SO_REUSEADDR 2
  17. #define SO_TYPE 3
  18. #define SO_ERROR 4
  19. #define SO_DONTROUTE 5
  20. #define SO_BROADCAST 6
  21. #define SO_SNDBUF 7
  22. #define SO_RCVBUF 8
  23. #define SO_SNDBUFFORCE 32
  24. #define SO_RCVBUFFORCE 33
  25. #define SO_KEEPALIVE 9
  26. #define SO_OOBINLINE 10
  27. #define SO_NO_CHECK 11
  28. #define SO_PRIORITY 12
  29. #define SO_LINGER 13
  30. #define SO_BSDCOMPAT 14
  31. /* To add :#define SO_REUSEPORT 15 */
  32. #define SO_PASSCRED 16
  33. #define SO_PEERCRED 17
  34. #define SO_RCVLOWAT 18
  35. #define SO_SNDLOWAT 19
  36. #define SO_RCVTIMEO 20
  37. #define SO_SNDTIMEO 21
  38. /* Security levels - as per NRL IPv6 - don't actually do anything */
  39. #define SO_SECURITY_AUTHENTICATION 22
  40. #define SO_SECURITY_ENCRYPTION_TRANSPORT 23
  41. #define SO_SECURITY_ENCRYPTION_NETWORK 24
  42. #define SO_BINDTODEVICE 25
  43. /* Socket filtering */
  44. #define SO_ATTACH_FILTER 26
  45. #define SO_DETACH_FILTER 27
  46. #define SO_PEERNAME 28
  47. #define SO_TIMESTAMP 29
  48. #define SCM_TIMESTAMP SO_TIMESTAMP
  49. #define SO_ACCEPTCONN 30
  50. #define SO_PEERSEC 31
  51. #endif /* _XTENSA_SOCKET_H */