From: jongfoster Date: Thu, 7 Jun 2001 23:06:09 +0000 (+0000) Subject: The host parameter to connect_to() is now const. X-Git-Tag: v_2_9_9~370 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=7367a58d13c72ef9978b46f416f9b4735981bdfb;hp=ae361fd41bf05e7eb5374150e1c6ddef75a03e9d The host parameter to connect_to() is now const. --- diff --git a/jbsockets.c b/jbsockets.c index 970595fb..06a11e00 100644 --- a/jbsockets.c +++ b/jbsockets.c @@ -1,4 +1,4 @@ -const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.8 2001/06/03 11:03:48 oes Exp $"; +const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.8 2001/06/03 19:12:07 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.c,v $ @@ -35,6 +35,9 @@ const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.8 2001/06/03 11:03:48 oes Exp * * Revisions : * $Log: jbsockets.c,v $ + * Revision 1.8 2001/06/03 19:12:07 oes + * filled comment + * * Revision 1.8 2001/06/03 11:03:48 oes * Makefile/in * @@ -173,7 +176,7 @@ const char jbsockets_h_rcs[] = JBSOCKETS_H_VERSION; * Returns : -1 => failure, else it is the socket file descriptor. * *********************************************************************/ -int connect_to(char *host, int portnum, struct client_state *csp) +int connect_to(const char *host, int portnum, struct client_state *csp) { struct sockaddr_in inaddr; int fd, addr; diff --git a/jbsockets.h b/jbsockets.h index 6d77c4c5..7c1ee588 100644 --- a/jbsockets.h +++ b/jbsockets.h @@ -1,9 +1,9 @@ #ifndef _JBSOCKETS_H #define _JBSOCKETS_H -#define JBSOCKETS_H_VERSION "$Id: jbsockets.h,v 1.1 2001/05/13 21:57:06 administrator Exp $" +#define JBSOCKETS_H_VERSION "$Id: jbsockets.h,v 1.1.1.1 2001/05/15 13:58:54 oes Exp $" /********************************************************************* * - * File : $Source: /home/administrator/cvs/ijb/jbsockets.h,v $ + * File : $Source: /cvsroot/ijbswa/current/jbsockets.h,v $ * * Purpose : Contains wrappers for system-specific sockets code, * so that the rest of JunkBuster can be more @@ -37,6 +37,9 @@ * * Revisions : * $Log: jbsockets.h,v $ + * Revision 1.1.1.1 2001/05/15 13:58:54 oes + * Initial import of version 2.9.3 source tree + * * *********************************************************************/ @@ -45,7 +48,7 @@ extern "C" { #endif -extern int connect_to(char *host, int portnum, struct client_state *csp); +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 void close_socket(int fd);