Lines Matching refs:smart_str_append_const

31 #define smart_str_append_const(str, const) \  macro
52 smart_str_append_const(soap_headers, "Proxy-Authorization: Basic "); in proxy_authentication()
54 smart_str_append_const(soap_headers, "\r\n"); in proxy_authentication()
81 smart_str_append_const(soap_headers, "Authorization: Basic "); in basic_authentication()
83 smart_str_append_const(soap_headers, "\r\n"); in basic_authentication()
153 smart_str_append_const(soap_headers, "\r\n"); in http_context_headers()
251 smart_str_append_const(&soap_headers, "CONNECT "); in http_connect()
255 smart_str_append_const(&soap_headers, " HTTP/1.1\r\n"); in http_connect()
256 smart_str_append_const(&soap_headers, "Host: "); in http_connect()
262 smart_str_append_const(&soap_headers, "\r\n"); in http_connect()
264 smart_str_append_const(&soap_headers, "\r\n"); in http_connect()
382 smart_str_append_const(&soap_headers_z,"Accept-Encoding: gzip, deflate\r\n"); in make_http_soap_request()
395 smart_str_append_const(&soap_headers_z,"Content-Encoding: deflate\r\n"); in make_http_soap_request()
399 smart_str_append_const(&soap_headers_z,"Content-Encoding: gzip\r\n"); in make_http_soap_request()
554 smart_str_append_const(&soap_headers, "POST "); in make_http_soap_request()
557 smart_str_append_const(&soap_headers, "://"); in make_http_soap_request()
576 smart_str_append_const(&soap_headers, " HTTP/1.1\r\n"); in make_http_soap_request()
578 smart_str_append_const(&soap_headers, " HTTP/1.0\r\n"); in make_http_soap_request()
580 smart_str_append_const(&soap_headers, "Host: "); in make_http_soap_request()
589 smart_str_append_const(&soap_headers, "\r\n" in make_http_soap_request()
592 smart_str_append_const(&soap_headers, "\r\n" in make_http_soap_request()
598 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
600 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
606 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
608 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
611 smart_str_append_const(&soap_headers, "User-Agent: "); in make_http_soap_request()
613 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
615 smart_str_append_const(&soap_headers, "User-Agent: PHP-SOAP/"PHP_VERSION"\r\n"); in make_http_soap_request()
626 smart_str_append_const(&soap_headers, "Content-Type: "); in make_http_soap_request()
629 smart_str_append_const(&soap_headers, "Content-Type: application/soap+xml; charset=utf-8"); in make_http_soap_request()
632 smart_str_append_const(&soap_headers,"; action=\""); in make_http_soap_request()
634 smart_str_append_const(&soap_headers,"\""); in make_http_soap_request()
636 smart_str_append_const(&soap_headers,"\r\n"); in make_http_soap_request()
643 smart_str_append_const(&soap_headers, "Content-Type: "); in make_http_soap_request()
645 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
647 smart_str_append_const(&soap_headers, "Content-Type: text/xml; charset=utf-8\r\n"); in make_http_soap_request()
650 smart_str_append_const(&soap_headers, "SOAPAction: \""); in make_http_soap_request()
652 smart_str_append_const(&soap_headers, "\"\r\n"); in make_http_soap_request()
655 smart_str_append_const(&soap_headers,"Content-Length: "); in make_http_soap_request()
657 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
758 smart_str_append_const(&soap_headers, "Authorization: Digest username=\""); in make_http_soap_request()
762 smart_str_append_const(&soap_headers, "\", realm=\""); in make_http_soap_request()
767 smart_str_append_const(&soap_headers, "\", nonce=\""); in make_http_soap_request()
770 smart_str_append_const(&soap_headers, "\", uri=\""); in make_http_soap_request()
787 smart_str_append_const(&soap_headers, "\", qop=\"auth"); in make_http_soap_request()
788 smart_str_append_const(&soap_headers, "\", nc=\""); in make_http_soap_request()
790 smart_str_append_const(&soap_headers, "\", cnonce=\""); in make_http_soap_request()
793 smart_str_append_const(&soap_headers, "\", response=\""); in make_http_soap_request()
797 smart_str_append_const(&soap_headers, "\", opaque=\""); in make_http_soap_request()
802 smart_str_append_const(&soap_headers, "\", algorithm=\""); in make_http_soap_request()
805 smart_str_append_const(&soap_headers, "\"\r\n"); in make_http_soap_request()
819 smart_str_append_const(&soap_headers, "Authorization: Basic "); in make_http_soap_request()
821 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
843 smart_str_append_const(&soap_headers, "Cookie: "); in make_http_soap_request()
871 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()
877 smart_str_append_const(&soap_headers, "\r\n"); in make_http_soap_request()