socket.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* classes: h_files */
  2. #ifndef SCM_SOCKET_H
  3. #define SCM_SOCKET_H
  4. /* Copyright (C) 1995,1996,1997,2000,2001, 2004, 2005, 2006, 2008, 2014 Free Software Foundation, Inc.
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public License
  8. * as published by the Free Software Foundation; either version 3 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  19. * 02110-1301 USA
  20. */
  21. #include "libguile/__scm.h"
  22. SCM_API SCM scm_inet_aton (SCM address);
  23. SCM_API SCM scm_inet_ntoa (SCM inetid);
  24. SCM_API SCM scm_inet_netof (SCM address);
  25. SCM_API SCM scm_lnaof (SCM address);
  26. SCM_API SCM scm_inet_makeaddr (SCM net, SCM lna);
  27. SCM_API SCM scm_inet_pton (SCM family, SCM address);
  28. SCM_API SCM scm_inet_ntop (SCM family, SCM address);
  29. SCM_API SCM scm_socket (SCM family, SCM style, SCM proto);
  30. SCM_API SCM scm_socketpair (SCM family, SCM style, SCM proto);
  31. SCM_API SCM scm_getsockopt (SCM sfd, SCM level, SCM optname);
  32. SCM_API SCM scm_setsockopt (SCM sfd, SCM level, SCM optname, SCM value);
  33. SCM_API SCM scm_shutdown (SCM sfd, SCM how);
  34. SCM_API SCM scm_connect (SCM sockfd, SCM fam, SCM address, SCM args);
  35. SCM_API SCM scm_bind (SCM sockfd, SCM fam, SCM address, SCM args);
  36. SCM_API SCM scm_listen (SCM sfd, SCM backlog);
  37. SCM_API SCM scm_accept (SCM sockfd);
  38. SCM_API SCM scm_getsockname (SCM sockfd);
  39. SCM_API SCM scm_getpeername (SCM sockfd);
  40. SCM_API SCM scm_recv (SCM sockfd, SCM buff_or_size, SCM flags);
  41. SCM_API SCM scm_send (SCM sockfd, SCM message, SCM flags);
  42. SCM_API SCM scm_recvfrom (SCM sockfd, SCM buff_or_size, SCM flags, SCM offset, SCM length);
  43. SCM_API SCM scm_sendto (SCM sockfd, SCM message, SCM fam, SCM address, SCM args_and_flags);
  44. SCM_INTERNAL void scm_init_socket (void);
  45. /* Wrapping/unwrapping address objects. */
  46. struct sockaddr;
  47. SCM_API SCM scm_from_sockaddr (const struct sockaddr *address,
  48. unsigned addr_size);
  49. SCM_API struct sockaddr *scm_to_sockaddr (SCM address, size_t *adress_size);
  50. SCM_API struct sockaddr *scm_c_make_socket_address (SCM family, SCM address,
  51. SCM args,
  52. size_t *address_size);
  53. SCM_API SCM scm_make_socket_address (SCM family, SCM address, SCM args);
  54. #endif /* SCM_SOCKET_H */
  55. /*
  56. Local Variables:
  57. c-file-style: "gnu"
  58. End:
  59. */