socket.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 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
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but 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 02110-1301 USA
  19. */
  20. #include "libguile/__scm.h"
  21. SCM_API SCM scm_htons (SCM in);
  22. SCM_API SCM scm_ntohs (SCM in);
  23. SCM_API SCM scm_htonl (SCM in);
  24. SCM_API SCM scm_ntohl (SCM in);
  25. SCM_API SCM scm_inet_aton (SCM address);
  26. SCM_API SCM scm_inet_ntoa (SCM inetid);
  27. SCM_API SCM scm_inet_netof (SCM address);
  28. SCM_API SCM scm_lnaof (SCM address);
  29. SCM_API SCM scm_inet_makeaddr (SCM net, SCM lna);
  30. SCM_API SCM scm_inet_pton (SCM family, SCM address);
  31. SCM_API SCM scm_inet_ntop (SCM family, SCM address);
  32. SCM_API SCM scm_socket (SCM family, SCM style, SCM proto);
  33. SCM_API SCM scm_socketpair (SCM family, SCM style, SCM proto);
  34. SCM_API SCM scm_getsockopt (SCM sfd, SCM level, SCM optname);
  35. SCM_API SCM scm_setsockopt (SCM sfd, SCM level, SCM optname, SCM value);
  36. SCM_API SCM scm_shutdown (SCM sfd, SCM how);
  37. SCM_API SCM scm_connect (SCM sockfd, SCM fam, SCM address, SCM args);
  38. SCM_API SCM scm_bind (SCM sockfd, SCM fam, SCM address, SCM args);
  39. SCM_API SCM scm_listen (SCM sfd, SCM backlog);
  40. SCM_API SCM scm_accept (SCM sockfd);
  41. SCM_API SCM scm_getsockname (SCM sockfd);
  42. SCM_API SCM scm_getpeername (SCM sockfd);
  43. SCM_API SCM scm_recv (SCM sockfd, SCM buff_or_size, SCM flags);
  44. SCM_API SCM scm_send (SCM sockfd, SCM message, SCM flags);
  45. SCM_API SCM scm_recvfrom (SCM sockfd, SCM buff_or_size, SCM flags, SCM offset, SCM length);
  46. SCM_API SCM scm_sendto (SCM sockfd, SCM message, SCM fam, SCM address, SCM args_and_flags);
  47. SCM_API void scm_init_socket (void);
  48. /* Wrapping/unwrapping address objects. */
  49. struct sockaddr;
  50. SCM_API SCM scm_from_sockaddr (const struct sockaddr *address,
  51. unsigned addr_size);
  52. SCM_API struct sockaddr *scm_to_sockaddr (SCM address, size_t *adress_size);
  53. SCM_API struct sockaddr *scm_c_make_socket_address (SCM family, SCM address,
  54. SCM args,
  55. size_t *address_size);
  56. SCM_API SCM scm_make_socket_address (SCM family, SCM address, SCM args);
  57. #endif /* SCM_SOCKET_H */
  58. /*
  59. Local Variables:
  60. c-file-style: "gnu"
  61. End:
  62. */