*** empty log message ***
[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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_gethost (SCM name);
34 SCM_API SCM scm_inet_aton (SCM address);
35 SCM_API SCM scm_inet_ntoa (SCM inetid);
36 SCM_API SCM scm_inet_netof (SCM address);
37 SCM_API SCM scm_lnaof (SCM address);
38 SCM_API SCM scm_inet_makeaddr (SCM net, SCM lna);
39 SCM_API SCM scm_inet_pton (SCM family, SCM address);
40 SCM_API SCM scm_inet_ntop (SCM family, SCM address);
41 SCM_API SCM scm_socket (SCM family, SCM style, SCM proto);
42 SCM_API SCM scm_socketpair (SCM family, SCM style, SCM proto);
43 SCM_API SCM scm_getsockopt (SCM sfd, SCM level, SCM optname);
44 SCM_API SCM scm_setsockopt (SCM sfd, SCM level, SCM optname, SCM value);
45 SCM_API SCM scm_shutdown (SCM sfd, SCM how);
46 SCM_API SCM scm_connect (SCM sockfd, SCM fam, SCM address, SCM args);
47 SCM_API SCM scm_bind (SCM sockfd, SCM fam, SCM address, SCM args);
48 SCM_API SCM scm_listen (SCM sfd, SCM backlog);
49 SCM_API SCM scm_accept (SCM sockfd);
50 SCM_API SCM scm_getsockname (SCM sockfd);
51 SCM_API SCM scm_getpeername (SCM sockfd);
52 SCM_API SCM scm_recv (SCM sockfd, SCM buff_or_size, SCM flags);
53 SCM_API SCM scm_send (SCM sockfd, SCM message, SCM flags);
54 SCM_API SCM scm_recvfrom (SCM sockfd, SCM buff_or_size, SCM flags, SCM offset, SCM length);
55 SCM_API SCM scm_sendto (SCM sockfd, SCM message, SCM fam, SCM address, SCM args_and_flags);
56 SCM_API void scm_init_socket (void);
57
58 #endif /* SCM_SOCKET_H */
59
60 /*
61 Local Variables:
62 c-file-style: "gnu"
63 End:
64 */