Lines Matching refs:smart_str_append_const
27 #define smart_str_append_const(str, const) \ macro
45 smart_str_append_const(soap_headers, "Proxy-Authorization: Basic "); in proxy_authentication()
47 smart_str_append_const(soap_headers, "\r\n"); in proxy_authentication()
71 smart_str_append_const(soap_headers, "Authorization: Basic "); in basic_authentication()
73 smart_str_append_const(soap_headers, "\r\n"); in basic_authentication()
136 smart_str_append_const(soap_headers, "\r\n"); in http_context_add_header()
255 smart_str_append_const(&soap_headers, "CONNECT "); in http_connect()
259 smart_str_append_const(&soap_headers, " HTTP/1.1\r\n"); in http_connect()
260 smart_str_append_const(&soap_headers, "Host: "); in http_connect()
266 smart_str_append_const(&soap_headers, "\r\n"); in http_connect()
268 smart_str_append_const(&soap_headers, "\r\n"); in http_connect()
386 smart_str_append_const(&soap_headers_z,"Accept-Encoding: gzip, deflate\r\n"); in make_http_soap_request()
399 smart_str_append_const(&soap_headers_z,"Content-Encoding: deflate\r\n"); in make_http_soap_request()
403 smart_str_append_const(&soap_headers_z,"Content-Encoding: gzip\r\n"); in make_http_soap_request()
571 smart_str_append_const(&soap_headers, "POST "); in make_http_soap_request()
574 smart_str_append_const(&soap_headers, "://"); in make_http_soap_request()
593 smart_str_append_const(&soap_headers, " HTTP/1.1\r\n"); in make_http_soap_request()
595 smart_str_append_const(&soap_headers, " HTTP/1.0\r\n"); in make_http_soap_request()
597 smart_str_append_const(&soap_headers, "Host: "); in make_http_soap_request()
604 smart_str_append_const(&soap_headers, "\r\n" in make_http_soap_request()
607 smart_str_append_const(&soap_headers, "\r\n" in make_http_soap_request()
613 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
615 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
621 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
623 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
626 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
628 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
630 smart_str_append_const(&soap_headers, "User-Agent: PHP-SOAP/"PHP_VERSION"\r\n"); in make_http_soap_request()
641 smart_str_append_const(&soap_headers, "Content-Type: "); in make_http_soap_request()
644 smart_str_append_const(&soap_headers, "Content-Type: application/soap+xml; charset=utf-8"); in make_http_soap_request()
647 smart_str_append_const(&soap_headers,"; action=\""); in make_http_soap_request()
649 smart_str_append_const(&soap_headers,"\""); in make_http_soap_request()
651 smart_str_append_const(&soap_headers,"\r\n"); in make_http_soap_request()
658 smart_str_append_const(&soap_headers, "Content-Type: "); in make_http_soap_request()
660 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
662 smart_str_append_const(&soap_headers, "Content-Type: text/xml; charset=utf-8\r\n"); in make_http_soap_request()
665 smart_str_append_const(&soap_headers, "SOAPAction: \""); in make_http_soap_request()
667 smart_str_append_const(&soap_headers, "\"\r\n"); in make_http_soap_request()
670 smart_str_append_const(&soap_headers,"Content-Length: "); in make_http_soap_request()
672 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
778 smart_str_append_const(&soap_headers, "Authorization: Digest username=\""); in make_http_soap_request()
782 smart_str_append_const(&soap_headers, "\", realm=\""); in make_http_soap_request()
787 smart_str_append_const(&soap_headers, "\", nonce=\""); in make_http_soap_request()
790 smart_str_append_const(&soap_headers, "\", uri=\""); in make_http_soap_request()
807 smart_str_append_const(&soap_headers, "\", qop=auth"); in make_http_soap_request()
808 smart_str_append_const(&soap_headers, ", nc="); in make_http_soap_request()
810 smart_str_append_const(&soap_headers, ", cnonce=\""); in make_http_soap_request()
813 smart_str_append_const(&soap_headers, "\", response=\""); in make_http_soap_request()
817 smart_str_append_const(&soap_headers, "\", opaque=\""); in make_http_soap_request()
822 smart_str_append_const(&soap_headers, "\", algorithm=\""); in make_http_soap_request()
825 smart_str_append_const(&soap_headers, "\"\r\n"); in make_http_soap_request()
838 smart_str_append_const(&soap_headers, "Authorization: Basic "); in make_http_soap_request()
840 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
859 smart_str_append_const(&soap_headers, "Cookie: "); in make_http_soap_request()
885 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
890 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()