/include/sparse/sys/socket.h

https://bitbucket.org/devzero2000/openvswitch · C Header · 133 lines · 103 code · 15 blank · 15 comment · 0 complexity · 6e9a85499a7e90a0fa3fc6b468a3ebd8 MD5 · raw file

  1. /*
  2. * Copyright (c) 2011 Nicira Networks.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at:
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef __CHECKER__
  17. #error "Use this header only with sparse. It is not a correct implementation."
  18. #endif
  19. #ifndef __SYS_SOCKET_SPARSE
  20. #define __SYS_SOCKET_SPARSE 1
  21. #include "openvswitch/types.h"
  22. #include <sys/uio.h>
  23. typedef unsigned short int sa_family_t;
  24. typedef __socklen_t socklen_t;
  25. struct sockaddr {
  26. sa_family_t sa_family;
  27. char sa_data[64];
  28. };
  29. struct sockaddr_storage {
  30. sa_family_t ss_family;
  31. char sa_data[64];
  32. };
  33. struct msghdr {
  34. void *msg_name;
  35. socklen_t msg_namelen;
  36. struct iovec *msg_iov;
  37. int msg_iovlen;
  38. void *msg_control;
  39. socklen_t msg_controllen;
  40. int msg_flags;
  41. };
  42. enum {
  43. SOCK_DGRAM,
  44. SOCK_RAW,
  45. SOCK_SEQPACKET,
  46. SOCK_STREAM
  47. };
  48. enum {
  49. SOL_SOCKET
  50. };
  51. enum {
  52. SO_ACCEPTCONN,
  53. SO_BROADCAST,
  54. SO_DEBUG,
  55. SO_DONTROUTE,
  56. SO_ERROR,
  57. SO_KEEPALIVE,
  58. SO_LINGER,
  59. SO_OOBINLINE,
  60. SO_RCVBUF,
  61. SO_RCVLOWAT,
  62. SO_RCVTIMEO,
  63. SO_REUSEADDR,
  64. SO_SNDBUF,
  65. SO_SNDLOWAT,
  66. SO_SNDTIMEO,
  67. SO_TYPE
  68. };
  69. enum {
  70. MSG_CTRUNC,
  71. MSG_DONTROUTE,
  72. MSG_EOR,
  73. MSG_OOB,
  74. MSG_NOSIGNAL,
  75. MSG_PEEK,
  76. MSG_TRUNC,
  77. MSG_WAITALL,
  78. MSG_DONTWAIT
  79. };
  80. enum {
  81. AF_UNSPEC,
  82. PF_UNSPEC = AF_UNSPEC,
  83. AF_INET,
  84. PF_INET = AF_INET,
  85. AF_INET6,
  86. PF_INET6 = AF_INET6,
  87. AF_UNIX,
  88. PF_UNIX = AF_UNIX,
  89. AF_NETLINK,
  90. PF_NETLINK = AF_NETLINK,
  91. AF_PACKET,
  92. PF_PACKET = AF_PACKET
  93. };
  94. enum {
  95. SHUT_RD,
  96. SHUT_RDWR,
  97. SHUT_WR
  98. };
  99. int accept(int, struct sockaddr *, socklen_t *);
  100. int bind(int, const struct sockaddr *, socklen_t);
  101. int connect(int, const struct sockaddr *, socklen_t);
  102. int getpeername(int, struct sockaddr *, socklen_t *);
  103. int getsockname(int, struct sockaddr *, socklen_t *);
  104. int getsockopt(int, int, int, void *, socklen_t *);
  105. int listen(int, int);
  106. ssize_t recv(int, void *, size_t, int);
  107. ssize_t recvfrom(int, void *, size_t, int, struct sockaddr *, socklen_t *);
  108. ssize_t recvmsg(int, struct msghdr *, int);
  109. ssize_t send(int, const void *, size_t, int);
  110. ssize_t sendmsg(int, const struct msghdr *, int);
  111. ssize_t sendto(int, const void *, size_t, int, const struct sockaddr *,
  112. socklen_t);
  113. int setsockopt(int, int, int, const void *, socklen_t);
  114. int shutdown(int, int);
  115. int sockatmark(int);
  116. int socket(int, int, int);
  117. int socketpair(int, int, int, int[2]);
  118. #endif /* <sys/socket.h> for sparse */