Lines Matching refs:smart_str_append_const

30 #define smart_str_append_const(str, const) \  macro
48 smart_str_append_const(soap_headers, "Proxy-Authorization: Basic "); in proxy_authentication()
50 smart_str_append_const(soap_headers, "\r\n"); in proxy_authentication()
74 smart_str_append_const(soap_headers, "Authorization: Basic "); in basic_authentication()
76 smart_str_append_const(soap_headers, "\r\n"); in basic_authentication()
146 smart_str_append_const(soap_headers, "\r\n"); in http_context_headers()
244 smart_str_append_const(&soap_headers, "CONNECT "); in http_connect()
248 smart_str_append_const(&soap_headers, " HTTP/1.1\r\n"); in http_connect()
249 smart_str_append_const(&soap_headers, "Host: "); in http_connect()
255 smart_str_append_const(&soap_headers, "\r\n"); in http_connect()
257 smart_str_append_const(&soap_headers, "\r\n"); in http_connect()
377 smart_str_append_const(&soap_headers_z,"Accept-Encoding: gzip, deflate\r\n"); in make_http_soap_request()
390 smart_str_append_const(&soap_headers_z,"Content-Encoding: deflate\r\n"); in make_http_soap_request()
394 smart_str_append_const(&soap_headers_z,"Content-Encoding: gzip\r\n"); in make_http_soap_request()
550 smart_str_append_const(&soap_headers, "POST "); in make_http_soap_request()
553 smart_str_append_const(&soap_headers, "://"); in make_http_soap_request()
572 smart_str_append_const(&soap_headers, " HTTP/1.1\r\n"); in make_http_soap_request()
574 smart_str_append_const(&soap_headers, " HTTP/1.0\r\n"); in make_http_soap_request()
576 smart_str_append_const(&soap_headers, "Host: "); in make_http_soap_request()
583 smart_str_append_const(&soap_headers, "\r\n" in make_http_soap_request()
586 smart_str_append_const(&soap_headers, "\r\n" in make_http_soap_request()
592 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
594 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
600 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
602 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
605 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
607 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
609 smart_str_append_const(&soap_headers, "User-Agent: PHP-SOAP/"PHP_VERSION"\r\n"); in make_http_soap_request()
620 smart_str_append_const(&soap_headers, "Content-Type: "); in make_http_soap_request()
623 smart_str_append_const(&soap_headers, "Content-Type: application/soap+xml; charset=utf-8"); in make_http_soap_request()
626 smart_str_append_const(&soap_headers,"; action=\""); in make_http_soap_request()
628 smart_str_append_const(&soap_headers,"\""); in make_http_soap_request()
630 smart_str_append_const(&soap_headers,"\r\n"); in make_http_soap_request()
637 smart_str_append_const(&soap_headers, "Content-Type: "); in make_http_soap_request()
639 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
641 smart_str_append_const(&soap_headers, "Content-Type: text/xml; charset=utf-8\r\n"); in make_http_soap_request()
644 smart_str_append_const(&soap_headers, "SOAPAction: \""); in make_http_soap_request()
646 smart_str_append_const(&soap_headers, "\"\r\n"); in make_http_soap_request()
649 smart_str_append_const(&soap_headers,"Content-Length: "); in make_http_soap_request()
651 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
756 smart_str_append_const(&soap_headers, "Authorization: Digest username=\""); in make_http_soap_request()
760 smart_str_append_const(&soap_headers, "\", realm=\""); in make_http_soap_request()
765 smart_str_append_const(&soap_headers, "\", nonce=\""); in make_http_soap_request()
768 smart_str_append_const(&soap_headers, "\", uri=\""); in make_http_soap_request()
785 smart_str_append_const(&soap_headers, "\", qop=\"auth"); in make_http_soap_request()
786 smart_str_append_const(&soap_headers, "\", nc=\""); in make_http_soap_request()
788 smart_str_append_const(&soap_headers, "\", cnonce=\""); in make_http_soap_request()
791 smart_str_append_const(&soap_headers, "\", response=\""); in make_http_soap_request()
795 smart_str_append_const(&soap_headers, "\", opaque=\""); in make_http_soap_request()
800 smart_str_append_const(&soap_headers, "\", algorithm=\""); in make_http_soap_request()
803 smart_str_append_const(&soap_headers, "\"\r\n"); in make_http_soap_request()
816 smart_str_append_const(&soap_headers, "Authorization: Basic "); in make_http_soap_request()
818 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
836 smart_str_append_const(&soap_headers, "Cookie: "); in make_http_soap_request()
859 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
864 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()