Lines Matching refs:connection
287 char *connection; in make_http_soap_request() local
954 connection = get_http_header_value(http_headers,"Proxy-Connection: "); in make_http_soap_request()
955 if (connection) { in make_http_soap_request()
956 if (strncasecmp(connection, "close", sizeof("close")-1) == 0) { in make_http_soap_request()
959 efree(connection); in make_http_soap_request()
963 connection = get_http_header_value(http_headers,"Connection: "); in make_http_soap_request()
964 if (connection) { in make_http_soap_request()
965 if (strncasecmp(connection, "close", sizeof("close")-1) == 0) { in make_http_soap_request()
968 efree(connection); in make_http_soap_request()
974 connection = get_http_header_value(http_headers,"Proxy-Connection: "); in make_http_soap_request()
975 if (connection) { in make_http_soap_request()
976 if (strncasecmp(connection, "Keep-Alive", sizeof("Keep-Alive")-1) == 0) { in make_http_soap_request()
979 efree(connection); in make_http_soap_request()
983 connection = get_http_header_value(http_headers,"Connection: "); in make_http_soap_request()
984 if (connection) { in make_http_soap_request()
985 if (strncasecmp(connection, "Keep-Alive", sizeof("Keep-Alive")-1) == 0) { in make_http_soap_request()
988 efree(connection); in make_http_soap_request()