Loading modules/proxy/proxy_connect.c +1 −1 Original line number Diff line number Diff line Loading @@ -172,7 +172,7 @@ int ap_proxy_connect_handler(request_rec *r, char *url, "CONNECT to %s on port %d", host, port); } if ((apr_create_tcp_socket(&sock, r->pool)) != APR_SUCCESS) { if ((apr_create_socket(&sock, APR_INET, SOCK_STREAM, r->pool)) != APR_SUCCESS) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "proxy: error creating socket"); return HTTP_INTERNAL_SERVER_ERROR; Loading modules/proxy/proxy_http.c +1 −1 Original line number Diff line number Diff line Loading @@ -246,7 +246,7 @@ int ap_proxy_http_handler(request_rec *r, char *url, "Connect to remote machine blocked"); } if ((apr_create_tcp_socket(&sock, r->pool)) != APR_SUCCESS) { if ((apr_create_socket(&sock, APR_INET, SOCK_STREAM, r->pool)) != APR_SUCCESS) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "proxy: error creating socket"); return HTTP_INTERNAL_SERVER_ERROR; Loading support/ab.c +10 −5 Original line number Diff line number Diff line Loading @@ -492,11 +492,16 @@ static void start_connect(struct connection *c) c->cbx = 0; c->gotheader = 0; if ((rv = apr_getaddrinfo(&destsa, hostname, AF_INET, port, 0, cntxt)) if ((rv = apr_getaddrinfo(&destsa, hostname, APR_UNSPEC, port, 0, cntxt)) != APR_SUCCESS) { apr_err("apr_getaddrinfo()", rv); char buf[120]; apr_snprintf(buf, sizeof(buf), "apr_getaddrinfo() for %s", hostname); apr_err(buf, rv); } if ((rv = apr_create_tcp_socket(&c->aprsock, cntxt)) != APR_SUCCESS) { if ((rv = apr_create_socket(&c->aprsock, destsa->sa.sin.sin_family, SOCK_STREAM, cntxt)) != APR_SUCCESS) { apr_err("Socket:", rv); } c->start = apr_now(); Loading Loading @@ -878,14 +883,14 @@ static void test(void) static void copyright(void) { if (!use_html) { printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.33 $> apache-2.0"); printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.34 $> apache-2.0"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2000 The Apache Software Foundation, http://www.apache.org/\n"); printf("\n"); } else { printf("<p>\n"); printf(" This is ApacheBench, Version %s <i><%s></i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.33 $"); printf(" This is ApacheBench, Version %s <i><%s></i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.34 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n"); printf(" Copyright (c) 1998-2000 The Apache Software Foundation, http://www.apache.org/<br>\n"); printf("</p>\n<p>\n"); Loading Loading
modules/proxy/proxy_connect.c +1 −1 Original line number Diff line number Diff line Loading @@ -172,7 +172,7 @@ int ap_proxy_connect_handler(request_rec *r, char *url, "CONNECT to %s on port %d", host, port); } if ((apr_create_tcp_socket(&sock, r->pool)) != APR_SUCCESS) { if ((apr_create_socket(&sock, APR_INET, SOCK_STREAM, r->pool)) != APR_SUCCESS) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "proxy: error creating socket"); return HTTP_INTERNAL_SERVER_ERROR; Loading
modules/proxy/proxy_http.c +1 −1 Original line number Diff line number Diff line Loading @@ -246,7 +246,7 @@ int ap_proxy_http_handler(request_rec *r, char *url, "Connect to remote machine blocked"); } if ((apr_create_tcp_socket(&sock, r->pool)) != APR_SUCCESS) { if ((apr_create_socket(&sock, APR_INET, SOCK_STREAM, r->pool)) != APR_SUCCESS) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "proxy: error creating socket"); return HTTP_INTERNAL_SERVER_ERROR; Loading
support/ab.c +10 −5 Original line number Diff line number Diff line Loading @@ -492,11 +492,16 @@ static void start_connect(struct connection *c) c->cbx = 0; c->gotheader = 0; if ((rv = apr_getaddrinfo(&destsa, hostname, AF_INET, port, 0, cntxt)) if ((rv = apr_getaddrinfo(&destsa, hostname, APR_UNSPEC, port, 0, cntxt)) != APR_SUCCESS) { apr_err("apr_getaddrinfo()", rv); char buf[120]; apr_snprintf(buf, sizeof(buf), "apr_getaddrinfo() for %s", hostname); apr_err(buf, rv); } if ((rv = apr_create_tcp_socket(&c->aprsock, cntxt)) != APR_SUCCESS) { if ((rv = apr_create_socket(&c->aprsock, destsa->sa.sin.sin_family, SOCK_STREAM, cntxt)) != APR_SUCCESS) { apr_err("Socket:", rv); } c->start = apr_now(); Loading Loading @@ -878,14 +883,14 @@ static void test(void) static void copyright(void) { if (!use_html) { printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.33 $> apache-2.0"); printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.34 $> apache-2.0"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2000 The Apache Software Foundation, http://www.apache.org/\n"); printf("\n"); } else { printf("<p>\n"); printf(" This is ApacheBench, Version %s <i><%s></i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.33 $"); printf(" This is ApacheBench, Version %s <i><%s></i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.34 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n"); printf(" Copyright (c) 1998-2000 The Apache Software Foundation, http://www.apache.org/<br>\n"); printf("</p>\n<p>\n"); Loading