xsocket.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* Error-checking wrappers for socket functions.
  2. Copyright (C) 2016-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef SUPPORT_XSOCKET_H
  16. #define SUPPORT_XSOCKET_H
  17. #include <poll.h>
  18. #include <sys/socket.h>
  19. #include <sys/types.h>
  20. int xsocket (int, int, int);
  21. void xsetsockopt (int, int, int, const void *, socklen_t);
  22. void xgetsockname (int, struct sockaddr *, socklen_t *);
  23. void xconnect (int, const struct sockaddr *, socklen_t);
  24. void xbind (int, const struct sockaddr *, socklen_t);
  25. void xlisten (int, int);
  26. int xaccept (int, struct sockaddr *, socklen_t *);
  27. int xaccept4 (int, struct sockaddr *, socklen_t *, int);
  28. void xsendto (int, const void *, size_t, int,
  29. const struct sockaddr *, socklen_t);
  30. size_t xrecvfrom (int, void *, size_t, int, struct sockaddr *, socklen_t *);
  31. int xpoll (struct pollfd *, nfds_t, int);
  32. #endif /* SUPPORT_XSOCKET_H */