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