X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=jbsockets.h;h=4975a057bbe4d5fa012d4c344bfa41717c60c6c5;hp=7c1ee5882a0cd9500cfb4ebcfcd503da11f7c1de;hb=1ba2c6b260f002db6a627ab63c621e5e94e9406c;hpb=7367a58d13c72ef9978b46f416f9b4735981bdfb diff --git a/jbsockets.h b/jbsockets.h index 7c1ee588..4975a057 100644 --- a/jbsockets.h +++ b/jbsockets.h @@ -1,6 +1,6 @@ -#ifndef _JBSOCKETS_H -#define _JBSOCKETS_H -#define JBSOCKETS_H_VERSION "$Id: jbsockets.h,v 1.1.1.1 2001/05/15 13:58:54 oes Exp $" +#ifndef JBSOCKETS_H_INCLUDED +#define JBSOCKETS_H_INCLUDED +#define JBSOCKETS_H_VERSION "$Id: jbsockets.h,v 1.3 2001/07/29 19:01:11 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.h,v $ @@ -37,6 +37,13 @@ * * Revisions : * $Log: jbsockets.h,v $ + * Revision 1.3 2001/07/29 19:01:11 jongfoster + * Changed _FILENAME_H to FILENAME_H_INCLUDED. + * Added forward declarations for needed structures. + * + * Revision 1.2 2001/06/07 23:06:09 jongfoster + * The host parameter to connect_to() is now const. + * * Revision 1.1.1.1 2001/05/15 13:58:54 oes * Initial import of version 2.9.3 source tree * @@ -48,15 +55,17 @@ extern "C" { #endif +struct client_state; + extern int connect_to(const char *host, int portnum, struct client_state *csp); -extern int write_socket(int fd, const char *buf, int n); -extern int read_socket(int fd, char *buf, int n); +extern size_t write_socket(int fd, const char *buf, size_t n); +extern size_t read_socket(int fd, char *buf, size_t n); extern void close_socket(int fd); extern int bind_port(const char *hostnam, int portnum); extern int accept_connection(struct client_state * csp, int fd); -extern int resolve_hostname_to_ip(const char *host); +extern unsigned long resolve_hostname_to_ip(const char *host); /* Revision control strings from this header and associated .c file */ extern const char jbsockets_rcs[]; @@ -66,7 +75,7 @@ extern const char jbsockets_h_rcs[]; } /* extern "C" */ #endif -#endif /* ndef _JBSOCKETS_H */ +#endif /* ndef JBSOCKETS_H_INCLUDED */ /* Local Variables: