c4b3efb08da0fb997ce5848147bda3978e511f79
[yaz-moved-to-github.git] / include / tcpip.h
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: tcpip.h,v $
7  * Revision 1.1  1995-03-30 09:39:43  quinn
8  * Moved .h files to include directory
9  *
10  * Revision 1.3  1995/03/27  08:36:11  quinn
11  * Some work on nonblocking operation in xmosi.c and rfct.c.
12  * Added protocol parameter to cs_create()
13  *
14  * Revision 1.2  1995/03/14  10:28:43  quinn
15  * Adding server-side support to tcpip.c and fixing bugs in nonblocking I/O
16  *
17  * Revision 1.1  1995/02/09  15:51:52  quinn
18  * Works better now.
19  *
20  */
21
22 #ifndef TCPIP_H
23 #define TCPIP_H
24
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <netdb.h>
28 #include <netinet/in.h>
29 #include <arpa/inet.h>
30
31 struct sockaddr_in *tcpip_strtoaddr(const char *str);
32
33 COMSTACK tcpip_type(int blocking, int protocol);
34
35 #endif