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