Home
last modified time | relevance | path

Searched refs:response (Results 1 – 25 of 149) sorted by last modified time

123456

/PHP-5.5/win32/
H A Dsendmail.c61 #define SMTP_ERROR_RESPONSE(response) { \ argument
62 if (response && error_message) { \
63 …if (NULL != (*error_message = ecalloc(1, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response)))) { \
64 …or_message, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response), SMTP_ERROR_RESPONSE_SPEC, respons…
66 efree(response); \
H A Dinstall.txt1802 response status can be sent with header(). If only GET and POST methods
/PHP-5.5/
H A Dserver-tests.php250 public $response; variable in HTTPRequest
310 $this->response = $match[2];
325 if(strlen($this->response) > 0) return TRUE;
1386 $out = $r->response;
H A Dphp.ini-development770 ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
H A Dphp.ini-production770 ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
/PHP-5.5/sapi/thttpd/
H A Dthttpd.c682 if (TG(hc)->response)
683 free(TG(hc)->response);
685 TG(hc)->response = TG(sbuf).c;
H A Dthttpd_patch289 + if (hc->response) {
290 + s.c = hc->response;
293 + hc->response = 0;
367 + if (hc->response) {
368 + free(hc->response);
370 + hc->response = s.c;
466 + hc->response[0] = '\0';
2054 - (void) memcpy( hc->response, &(hc->response[sz]), newlen );
2055 + (void) memmove( hc->response, &(hc->response[sz]), newlen );
2127 + hc->response = realloc(hc->response, hc->maxresponse + 1);
[all …]
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in369 ; This directive may be used to customize the response of a ping request. The
370 ; response is formatted as text/plain with a 200 response code.
372 ;ping.response = pong
421 ; %s: status (response code)
/PHP-5.5/sapi/cli/tests/
H A Dbug61679.phpt34 // Only echo the first line from the response,
H A Dbug67429.phpt2 FR #67429 (CLI server is missing some new HTTP response codes)
/PHP-5.5/sapi/apache_hooks/
H A DREADME44 response phase
/PHP-5.5/ext/xmlrpc/tests/
H A D003.phpt14 $response = xmlrpc_encode($params);
15 echo $response;
23 $response = xmlrpc_encode($params);
24 echo $response;
32 $response = xmlrpc_encode($params);
33 echo $response;
H A D005.phpt14 $response = xmlrpc_encode(3.24234);
15 echo $response;
17 $response = xmlrpc_encode(-3.24234);
18 echo $response;
20 $response = xmlrpc_encode('Is string');
21 echo $response;
H A D006.phpt25 $response = xmlrpc_decode($xml);
26 echo $response;
H A D007.phpt25 $response = xmlrpc_decode($xml);
26 echo $response;
H A Dbug37057.phpt7 $response='<?xml version="1.0"?>
23 $retval=xmlrpc_decode($response);
28 $response='<?xml version="1.0"?>
44 $retval=xmlrpc_decode($response);
H A Dbug42736.phpt25 $response = xmlrpc_server_call_method($xml, $Myrequest, null);
27 var_dump($response);
H A Dbug50285.phpt33 $response = xmlrpc_server_call_method($server, $HTTP_RAW_POST_DATA, null);
34 var_dump(xmlrpc_decode($response));
47 $response = xmlrpc_server_call_method($server, $HTTP_RAW_POST_DATA, null);
48 var_dump(xmlrpc_decode($response));
61 $response = xmlrpc_server_call_method($server, $HTTP_RAW_POST_DATA, null);
62 var_dump(xmlrpc_decode($response));
75 $response = xmlrpc_server_call_method($server, $HTTP_RAW_POST_DATA, null);
76 var_dump(xmlrpc_decode($response));
H A D004.phpt8 $response = xmlrpc_encode(1);
9 echo $response;
/PHP-5.5/ext/xmlrpc/
H A Dxmlrpc-epi-php.c789 XMLRPC_REQUEST response; in decode_request_worker() local
795 response = XMLRPC_REQUEST_FromXML(xml_in, xml_in_len, &opts); in decode_request_worker()
796 if (response) { in decode_request_worker()
798 retval = XMLRPC_to_PHP(XMLRPC_RequestGetData(response)); in decode_request_worker()
800 if (XMLRPC_RequestGetRequestType(response) == xmlrpc_request_call) { in decode_request_worker()
802 method_name = XMLRPC_RequestGetMethodName(response); in decode_request_worker()
816 XMLRPC_RequestFree(response, 1); in decode_request_worker()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.h402 int XMLRPC_ResponseIsFault(XMLRPC_REQUEST response);
404 int XMLRPC_GetResponseFaultCode(XMLRPC_REQUEST response);
406 const char* XMLRPC_GetResponseFaultString (XMLRPC_REQUEST response);
H A Dxmlrpc.c2866 int XMLRPC_ResponseIsFault(XMLRPC_REQUEST response) { in XMLRPC_ResponseIsFault() argument
2867 return XMLRPC_ValueIsFault( XMLRPC_RequestGetData(response) ); in XMLRPC_ResponseIsFault()
2912 int XMLRPC_GetResponseFaultCode(XMLRPC_REQUEST response) { in XMLRPC_GetResponseFaultCode() argument
2913 return XMLRPC_GetValueFaultCode( XMLRPC_RequestGetData(response) ); in XMLRPC_GetResponseFaultCode()
2955 const char* XMLRPC_GetResponseFaultString (XMLRPC_REQUEST response) { in XMLRPC_GetResponseFaultString() argument
2956 return XMLRPC_GetValueFaultString( XMLRPC_RequestGetData(response) ); in XMLRPC_GetResponseFaultString()
/PHP-5.5/ext/standard/tests/url/
H A Dget_headers_error_002.phpt9 * Description: Fetches all the headers sent by the server in response to a HTTP request
H A Dget_headers_error_001.phpt9 * Description: Fetches all the headers sent by the server in response to a HTTP request
/PHP-5.5/ext/standard/tests/http/
H A Dserver.inc76 // send response

Completed in 130 milliseconds

123456