add version 3.0.26 change log
[privoxy.git] / jbsockets.h
1 #ifndef JBSOCKETS_H_INCLUDED
2 #define JBSOCKETS_H_INCLUDED
3 #define JBSOCKETS_H_VERSION "$Id: jbsockets.h,v 1.23 2014/06/02 06:19:05 fabiankeil Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/jbsockets.h,v $
7  *
8  * Purpose     :  Contains wrappers for system-specific sockets code,
9  *                so that the rest of Junkbuster can be more
10  *                OS-independent.  Contains #ifdefs to make this work
11  *                on many platforms.
12  *
13  * Copyright   :  Written by and Copyright (C) 2001-2014 the
14  *                Privoxy team. http://www.privoxy.org/
15  *
16  *                Based on the Internet Junkbuster originally written
17  *                by and Copyright (C) 1997 Anonymous Coders and
18  *                Junkbusters Corporation.  http://www.junkbusters.com
19  *
20  *                This program is free software; you can redistribute it
21  *                and/or modify it under the terms of the GNU General
22  *                Public License as published by the Free Software
23  *                Foundation; either version 2 of the License, or (at
24  *                your option) any later version.
25  *
26  *                This program is distributed in the hope that it will
27  *                be useful, but WITHOUT ANY WARRANTY; without even the
28  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
29  *                PARTICULAR PURPOSE.  See the GNU General Public
30  *                License for more details.
31  *
32  *                The GNU General Public License should be included with
33  *                this file.  If not, you can view it at
34  *                http://www.gnu.org/copyleft/gpl.html
35  *                or write to the Free Software Foundation, Inc., 59
36  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
37  *
38  *********************************************************************/
39
40
41 #include "project.h"
42
43 struct client_state;
44
45 extern jb_socket connect_to(const char *host, int portnum, struct client_state *csp);
46 #ifdef AMIGA
47 extern int write_socket(jb_socket fd, const char *buf, ssize_t n);
48 #else
49 extern int write_socket(jb_socket fd, const char *buf, size_t n);
50 #endif
51 extern int read_socket(jb_socket fd, char *buf, int n);
52 extern int data_is_available(jb_socket fd, int seconds_to_wait);
53 extern void close_socket(jb_socket fd);
54 extern void drain_and_close_socket(jb_socket fd);
55
56 extern int bind_port(const char *hostnam, int portnum, jb_socket *pfd);
57 extern int accept_connection(struct client_state * csp, jb_socket fds[]);
58 extern void get_host_information(jb_socket afd, char **ip_address, char **port, char **hostname);
59
60 extern unsigned long resolve_hostname_to_ip(const char *host);
61
62 extern int socket_is_still_alive(jb_socket sfd);
63
64 #ifdef FEATURE_EXTERNAL_FILTERS
65 extern void mark_socket_for_close_on_execute(jb_socket fd);
66 #endif
67
68 /* Revision control strings from this header and associated .c file */
69 extern const char jbsockets_rcs[];
70 extern const char jbsockets_h_rcs[];
71
72 /*
73  * Solaris workaround
74  * XXX: still necessary?
75  */
76 #ifndef INADDR_NONE
77 #define INADDR_NONE -1
78 #endif
79
80
81 #endif /* ndef JBSOCKETS_H_INCLUDED */
82
83 /*
84   Local Variables:
85   tab-width: 3
86   end:
87 */