X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=jbsockets.c;h=3b36d9db3b249085e3b7db9f8d1e52e121cbea49;hb=8362f15d0f895220d5529540da9835b6cf48c434;hp=5da793e177b0b847398f1a9a13cb6dcd7f5f9ab2;hpb=526945452a706b9711127abb8c6183ce9dd913bf;p=privoxy.git diff --git a/jbsockets.c b/jbsockets.c index 5da793e1..3b36d9db 100644 --- a/jbsockets.c +++ b/jbsockets.c @@ -1,4 +1,4 @@ -const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.14 2001/07/18 13:47:59 oes Exp $"; +const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.17 2001/09/13 20:11:46 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.c,v $ @@ -35,6 +35,18 @@ const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.14 2001/07/18 13:47:59 oes Ex * * Revisions : * $Log: jbsockets.c,v $ + * Revision 1.17 2001/09/13 20:11:46 jongfoster + * Fixing 2 compiler warnings under Win32 + * + * Revision 1.16 2001/07/30 22:08:36 jongfoster + * Tidying up #defines: + * - All feature #defines are now of the form FEATURE_xxx + * - Permanently turned off WIN_GUI_EDIT + * - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS + * + * Revision 1.15 2001/07/29 17:40:43 jongfoster + * Fixed compiler warning by adding a cast + * * Revision 1.14 2001/07/18 13:47:59 oes * Eliminated dirty hack for getsockbyname() * @@ -116,6 +128,10 @@ const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.14 2001/07/18 13:47:59 oes Ex #include #endif +#ifdef __EMX__ +#include /* OS/2/EMX needs a little help with select */ +#endif + #endif #include "project.h" @@ -152,9 +168,9 @@ int connect_to(const char *host, int portnum, struct client_state *csp) int flags; #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */ -#ifdef ACL_FILES +#ifdef FEATURE_ACL struct access_control_addr dst[1]; -#endif /* def ACL_FILES */ +#endif /* def FEATURE_ACL */ memset((char *)&inaddr, 0, sizeof inaddr); @@ -164,7 +180,7 @@ int connect_to(const char *host, int portnum, struct client_state *csp) return(-1); } -#ifdef ACL_FILES +#ifdef FEATURE_ACL dst->addr = ntohl(addr); dst->port = portnum; @@ -173,20 +189,24 @@ int connect_to(const char *host, int portnum, struct client_state *csp) errno = EPERM; return(-1); } -#endif /* def ACL_FILES */ +#endif /* def FEATURE_ACL */ inaddr.sin_addr.s_addr = addr; inaddr.sin_family = AF_INET; csp->http->host_ip_addr_str = strdup(inet_ntoa(inaddr.sin_addr)); +#ifndef _WIN32 if (sizeof(inaddr.sin_port) == sizeof(short)) +#endif /* ndef _WIN32 */ { inaddr.sin_port = htons((short)portnum); } +#ifndef _WIN32 else { inaddr.sin_port = htonl(portnum); } +#endif /* ndef _WIN32 */ if ((fd = socket(inaddr.sin_family, SOCK_STREAM, 0)) < 0) { @@ -376,14 +396,18 @@ int bind_port(const char *hostnam, int portnum) inaddr.sin_family = AF_INET; inaddr.sin_addr.s_addr = resolve_hostname_to_ip(hostnam); +#ifndef _WIN32 if (sizeof(inaddr.sin_port) == sizeof(short)) +#endif /* ndef _WIN32 */ { inaddr.sin_port = htons((short)portnum); } +#ifndef _WIN32 else { inaddr.sin_port = htonl(portnum); } +#endif /* ndef _WIN32 */ fd = socket(AF_INET, SOCK_STREAM, 0);