Home
last modified time | relevance | path

Searched refs:packet (Results 1 – 25 of 43) sorted by relevance

12

/PHP-7.3/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c450 packet->protocol_version, packet->server_version, packet->thread_id); in php_mysqlnd_greet_read()
948 packet->field_count, packet->server_status, packet->warning_count); in php_mysqlnd_eof_read()
1946 packet->stmt_id, packet->field_count, packet->param_count); in php_mysqlnd_prepare_read()
2216 memset(packet, 0, sizeof(*packet)); in MYSQLND_METHOD()
2228 memset(packet, 0, sizeof(*packet)); in MYSQLND_METHOD()
2240 memset(packet, 0, sizeof(*packet)); in MYSQLND_METHOD()
2252 memset(packet, 0, sizeof(*packet)); in MYSQLND_METHOD()
2264 memset(packet, 0, sizeof(*packet)); in MYSQLND_METHOD()
2276 memset(packet, 0, sizeof(*packet)); in MYSQLND_METHOD()
2288 memset(packet, 0, sizeof(*packet)); in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_wireprotocol.h34 #define PACKET_WRITE(conn, packet) ((packet)->header.m->write_to_net((conn), (packet))) argument
35 #define PACKET_READ(conn, packet) ((packet)->header.m->read_from_net((conn), (packet))) argument
36 #define PACKET_FREE(packet) \ argument
38 DBG_INF_FMT("PACKET_FREE(%p)", packet); \
39 if ((packet)->header.m->free_mem) { \
40 ((packet)->header.m->free_mem((packet))); \
48 enum_func_status (*read_from_net)(MYSQLND_CONN_DATA * conn, void * packet);
49 size_t (*write_to_net)(MYSQLND_CONN_DATA * conn, void * packet);
50 void (*free_mem)(void *packet);
285 zend_ulong php_mysqlnd_net_field_length(const zend_uchar **packet);
[all …]
H A Dmysqlnd_structs.h967 …sqlnd_protocol_payload_decoder_factory__init_greet_packet)(struct st_mysqlnd_packet_greet *packet);
968 …mysqlnd_protocol_payload_decoder_factory__init_auth_packet)(struct st_mysqlnd_packet_auth *packet);
969 …ayload_decoder_factory__init_auth_response_packet)(struct st_mysqlnd_packet_auth_response *packet);
971 …unc_mysqlnd_protocol_payload_decoder_factory__init_ok_packet)(struct st_mysqlnd_packet_ok *packet);
972 …d_protocol_payload_decoder_factory__init_command_packet)(struct st_mysqlnd_packet_command *packet);
973 …c_mysqlnd_protocol_payload_decoder_factory__init_eof_packet)(struct st_mysqlnd_packet_eof *packet);
974 …ol_payload_decoder_factory__init_rset_header_packet)(struct st_mysqlnd_packet_rset_header *packet);
975 …col_payload_decoder_factory__init_result_field_packet)(struct st_mysqlnd_packet_res_field *packet);
976 …c_mysqlnd_protocol_payload_decoder_factory__init_row_packet)(struct st_mysqlnd_packet_row *packet);
977 …sqlnd_protocol_payload_decoder_factory__init_stats_packet)(struct st_mysqlnd_packet_stats *packet);
[all …]
/PHP-7.3/ext/wddx/
H A Dphp_wddx_api.h49 #define php_wddx_add_chunk(packet, str) smart_str_appends(packet, str) argument
50 #define php_wddx_add_chunk_ex(packet, str, len) smart_str_appendl(packet, str, len) argument
51 #define php_wddx_add_chunk_static(packet, str) smart_str_appendl(packet, str, sizeof(str)-1) argument
56 void php_wddx_destructor(wddx_packet *packet);
58 void php_wddx_packet_start(wddx_packet *packet, char *comment, size_t comment_len);
59 void php_wddx_packet_end(wddx_packet *packet);
61 void php_wddx_serialize_var(wddx_packet *packet, zval *var, zend_string *name);
63 #define php_wddx_gather(packet) estrndup(packet->c, packet->len) argument
H A Dwddx.c266 wddx_packet *packet; in PS_SERIALIZER_ENCODE_FUNC() local
281 smart_str_0(packet); in PS_SERIALIZER_ENCODE_FUNC()
1134 wddx_packet *packet; in PHP_FUNCTION() local
1145 smart_str_0(packet); in PHP_FUNCTION()
1157 wddx_packet *packet; in PHP_FUNCTION() local
1184 smart_str_0(packet); in PHP_FUNCTION()
1195 smart_str *packet; in php_wddx_constructor() local
1199 return packet; in php_wddx_constructor()
1208 efree(packet); in php_wddx_destructor()
1218 wddx_packet *packet; in PHP_FUNCTION() local
[all …]
/PHP-7.3/ext/sockets/tests/
H A Dmcast_ipv6_recv.phpt26 $r = socket_sendto($s, $m = "testing packet", strlen($m), 0, 'ff01::114', 3000);
28 die('skip unable to send multicast packet.');
190 string(14) "testing packet"
193 1> initial packet
198 2> unicast packet
202 3> mcast packet
207 4> unicast packet
211 5> mcast packet
216 6> unicast packet
220 7> mcast packet from desired source
[all …]
H A Dmcast_ipv4_recv.phpt50 $r = socket_sendto($sends1, $m = "initial packet", strlen($m), 0, $mcastaddr, 3000);
68 $r = socket_sendto($sends1, $m = "unicast packet", strlen($m), 0, "127.0.0.1", 3000);
80 $r = socket_sendto($sends1, $m = "mcast packet", strlen($m), 0, $mcastaddr, 3000);
164 1> initial packet
169 2> unicast packet
174 3> mcast packet
179 4> unicast packet
183 5> mcast packet from 127.0.0.1
188 6> unicast packet
192 7> mcast packet from 127.0.0.1
[all …]
H A Dmcast_ipv6_recv_limited.phpt23 $r = socket_sendto($s, $m = "testing packet", strlen($m), 0, 'ff01::114', 3000);
25 die('skip unable to send multicast packet.');
66 $r = socket_sendto($sends1, $m = "testing packet", strlen($m), 0, $mcastaddr, 3000);
73 $r = socket_sendto($sends1, $m = "initial packet", strlen($m), 0, $mcastaddr, 3000);
89 $r = socket_sendto($sends1, $m = "ignored mcast packet", strlen($m), 0, $mcastaddr, 3000);
91 $r = socket_sendto($sends1, $m = "unicast packet", strlen($m), 0, "::1", 3000);
101 $r = socket_sendto($sends1, $m = "mcast packet", strlen($m), 0, $mcastaddr, 3000);
118 string(14) "testing packet"
121 1> initial packet
126 2> unicast packet
[all …]
H A Dsocket_recvmsg.phpt38 $r = socket_sendto($sends1, $m = "testing packet", strlen($m), 0, $addr, 3000);
87 [0] => testing packet
/PHP-7.3/ext/wddx/tests/
H A D002.phpt2 wddx packet construction using wddx ressource
16 // add vars to packet
/PHP-7.3/ext/snmp/tests/
H A Dsnmp2_get.phpt92 Warning: snmp2_get(): Error in packet at 'SNMPv2-MIB::sysDescr.110': No Such Instance currently exi…
96 Warning: snmp2_get(): Error in packet at 'SNMPv2-MIB::sysDescr.110': No Such Instance currently exi…
100 Warning: snmp2_get(): Error in packet at 'SNMPv2-MIB::sysUpTime.220': No Such Instance currently ex…
H A Dsnmpget.phpt94 Warning: snmpget(): Error in packet at 'SNMPv2-MIB::sysDescr.110': (noSuchName) There is no such va…
98 Warning: snmpget(): Error in packet at 'SNMPv2-MIB::sysDescr.110': (noSuchName) There is no such va…
102 Warning: snmpget(): Error in packet at 'SNMPv2-MIB::sysUpTime.220': (noSuchName) There is no such v…
H A Dsnmp-object-errno-errstr.phpt113 string(%d) "Error in packet %s"
139 string(74) "Can not fit all OIDs for SET query into one packet, using multiple queries"
144 string(74) "Can not fit all OIDs for SET query into one packet, using multiple queries"
H A Dsnmp2_set-nomib.phpt48 Warning: snmp2_set(): Error in packet at '%s': notWritable (That object does not support modificati…
H A Dsnmpset-nomib.phpt49 Warning: snmpset(): Error in packet at '%s': (noSuchName) There is no such variable name in this MI…
H A Dsnmp2_real_walk.phpt85 Warning: snmp2_real_walk(): Error in packet at '%s': No more variables left in this MIB View (It is…
H A Dsnmprealwalk.phpt85 Warning: snmprealwalk(): Error in packet at '%s': (noSuchName) There is no such variable name in th…
H A Dsnmpwalk.phpt98 Warning: snmpwalk(): Error in packet at '%s': (noSuchName) There is no such variable name in this M…
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_stmt_send_long_data_packet_size_libmysql.phpt2 mysqli_stmt_send_long_data() - exceed packet size, libmysql - bug #26824
45 // maximum packet size up to which we test is 10M
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt2 mysqli_stmt_send_long_data() - exceed packet size, mysqlnd
45 // maximum packet size up to which we test is 10M
H A Dbug_bits.phpt2 Bug (Incorrectly decoding bit values / Malformed server packet. Field length pointing)
H A Dmysqli_fetch_array_large.phpt30 myslqnd - [1153] Got a packet bigger than 'max_allowed_packet' bytes
136 printf("stop: packet size - %d\n", $package_size);
H A Dmysqli_poll_kill.phpt91 // Yes, 1 - fetch OK packet of kill!
204 Warning: Error while sending QUERY packet. %s
/PHP-7.3/sapi/fpm/tests/
H A Dfcgi.inc295 * Build a FastCGI packet
297 * @param int $type Type of the packet
298 * @param string $content Content of the packet
389 * @param string $data string containing all the packet
411 if ($packet = fread($this->_sock, self::HEADER_LEN)) {
412 $resp = $this->decodePacketHeader($packet);
/PHP-7.3/ext/standard/tests/file/
H A Dfread_fwrite_basic.phpt17 reached, (for network streams) when a packet becomes available, or (after

Completed in 58 milliseconds

12