Home
last modified time | relevance | path

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

1234567

/PHP-7.4/
H A DNEWS409 . Fixed bug #80838 (HTTP wrapper waits for HTTP 1 response after HTTP 101).
1510 . Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from
1928 . Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from
2278 . Fixed bug #77369 (memcpy with negative length via crafted DNS response). (Stas)
H A Dphp.ini-development817 ; use when sending HTTP response code. If set to 0, PHP sends Status: header that
H A Dphp.ini-production817 ; use when sending HTTP response code. If set to 0, PHP sends Status: header that
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c2657 MYSQLND_PACKET_EOF response; in MYSQLND_METHOD() local
2659 payload_decoder_factory->m.init_eof_packet(&response); in MYSQLND_METHOD()
2663 if (FAIL == (ret = PACKET_READ(payload_decoder_factory->conn, &response))) { in MYSQLND_METHOD()
2666 } else if (0xFF == response.field_count) { in MYSQLND_METHOD()
2668 …DBG_INF_FMT("Error_no=%d SQLstate=%s Error=%s", response.error_no, response.sqlstate, response.err… in MYSQLND_METHOD()
2670 SET_CLIENT_ERROR(error_info, response.error_no, response.sqlstate, response.error); in MYSQLND_METHOD()
2673 } else if (0xFE != response.field_count) { in MYSQLND_METHOD()
2675 DBG_ERR_FMT("EOF packet expected, field count wasn't 0xFE but 0x%2X", response.field_count); in MYSQLND_METHOD()
2676 …f(NULL, E_WARNING, "EOF packet expected, field count wasn't 0xFE but 0x%2X", response.field_count); in MYSQLND_METHOD()
2680 PACKET_FREE(&response); in MYSQLND_METHOD()
/PHP-7.4/sapi/cgi/tests/
H A Dbug81518a.phpt9 "Lets smuggle a HTTP response.\r\n"
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc9 require_once 'response.inc';
117 * The last response for the request call
121 private $response;
492 $response = $this->request('', [], $pingPath, $address);
493 $response->expectBody($pingResponse, 'text/plain');
601 $this->response = new Response(
611 $this->response = new Response();
614 $this->response->debugOutput();
616 return $this->response;
664 $response->debugOutput();
[all …]
H A Dstatus.inc42 * @param Response $response
47 public function checkStatus(Response $response, array $fields, string $type)
53 $body = $response->getBody($this->contentTypes[$type]);
H A Dresponse.inc52 'response' => $data,
159 * Debug response output
180 * Check if the response is valid and if not emit error message
191 $this->error("The response is invalid: $this->rawData");
H A Dproc-user-ignored.phpt20 ping.response = pong
H A Dsocket-uds-numeric-ugid-nonroot.phpt23 ping.response = pong
H A Dsocket-uds-numeric-ugid.phpt23 ping.response = pong
/PHP-7.4/ext/ftp/
H A Dftp.c657 ftp_alloc(ftpbuf_t *ftp, const zend_long size, zend_string **response) in ftp_alloc() argument
680 if (response) { in ftp_alloc()
681 *response = zend_string_init(ftp->inbuf, strlen(ftp->inbuf), 0); in ftp_alloc()
H A Dphp_ftp.c104 ZEND_ARG_INFO(1, response)
696 zend_string *response = NULL; in PHP_FUNCTION() local
706 ret = ftp_alloc(ftp, size, zresponse ? &response : NULL); in PHP_FUNCTION()
708 if (response) { in PHP_FUNCTION()
709 ZEND_TRY_ASSIGN_REF_STR(zresponse, response); in PHP_FUNCTION()
/PHP-7.4/sapi/cli/tests/
H A Dphp_cli_server_021.phpt18 …c093", uri="/dir/index.html", qop=auth, nc=00000001, cnonce="0a4f113b", response="6629fae49393a053…
37 …c093", uri="/dir/index.html", qop=auth, nc=00000001, cnonce="0a4f113b", response="6629fae49393a053…
H A Dbug67429_1.phpt2 FR #67429 (CLI server is missing some new HTTP response codes)
H A Dbug67429_2.phpt2 FR #67429 (CLI server is missing some new HTTP response codes)
H A Dbug61679.phpt29 // Only echo the first line from the response,
/PHP-7.4/ext/standard/tests/http/
H A Dbug80838.phpt2 Bug #80838 (HTTP wrapper waits for HTTP 1 response after HTTP 101)
/PHP-7.4/win32/
H A Dsendmail.c53 #define SMTP_ERROR_RESPONSE(response) { \ argument
54 if (response && error_message) { \
55 *error_message = ecalloc(1, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response)); \
56 …or_message, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response), SMTP_ERROR_RESPONSE_SPEC, respons…
57 efree(response); \
/PHP-7.4/ext/snmp/
H A Dsnmp.c672 struct snmp_pdu *pdu=NULL, *response; in php_snmp_internal()
757 if (response->errstat == SNMP_ERR_NOERROR) { in php_snmp_internal()
763 snmp_free_pdu(response); in php_snmp_internal()
861 snmp_free_pdu(response); in php_snmp_internal()
866 for (count=1, vars = response->variables; in php_snmp_internal()
867 vars && count != response->errindex; in php_snmp_internal()
873 snmp_free_pdu(response); in php_snmp_internal()
885 snmp_free_pdu(response); in php_snmp_internal()
889 snmp_free_pdu(response); in php_snmp_internal()
917 if (response) { in php_snmp_internal()
[all …]
/PHP-7.4/ext/soap/
H A Dsoap.c2517 ZVAL_NULL(response);
2546 if (call_user_function(NULL, this_ptr, &func, response, 5, params) != SUCCESS) {
2549 } else if (Z_TYPE_P(response) != IS_STRING) {
2609 zval response; local
2702 if (ret && Z_TYPE(response) == IS_STRING) {
2704 …ret = parse_packet_soap(this_ptr, Z_STRVAL(response), Z_STRLEN(response), fn, NULL, return_value, …
2708 zval_ptr_dtor(&response);
2747 if (ret && Z_TYPE(response) == IS_STRING) {
2749 …ret = parse_packet_soap(this_ptr, Z_STRVAL(response), Z_STRLEN(response), NULL, function, return_v…
2753 zval_ptr_dtor(&response);
[all …]
H A Dphp_http.c668 char HA1[33], HA2[33], response[33], cnonce[33], nc[9]; in make_http_soap_request() local
757 make_digest(response, hash); in make_http_soap_request()
795 smart_str_appendl(&soap_headers, response, 32); in make_http_soap_request()
/PHP-7.4/ext/soap/tests/
H A Dbug47021.phpt63 $response = parent::__doRequest($request, $location, $action, $version, $one_way);
65 var_dump(strlen($response));
67 return $response;
/PHP-7.4/ext/openssl/tests/
H A Dstreams_crypto_method.phpt28 $response = "HTTP/1.0 200 OK\r\n"
34 fwrite($client, $response);
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in253 ; This directive may be used to customize the response of a ping request. The
254 ; response is formatted as text/plain with a 200 response code.
256 ;ping.response = pong
305 ; %s: status (response code)

Completed in 71 milliseconds

1234567