| /PHP_TRUNK/ext/ldap/ |
| H A D | ldap.c | 2031 int rc, protocol = LDAP_VERSION3; local 2039 if (((rc = ldap_set_option(ld->link, LDAP_OPT_PROTOCOL_VERSION, &protocol)) != LDAP_SUCCESS) ||
|
| /PHP_TRUNK/main/streams/ |
| H A D | transports.c | 32 PHPAPI int php_stream_xport_register(char *protocol, php_stream_transport_factory factory TSRMLS_DC) argument 34 return zend_hash_update(&xport_hash, protocol, strlen(protocol) + 1, &factory, sizeof(factory), NULL); 37 PHPAPI int php_stream_xport_unregister(char *protocol TSRMLS_DC) 39 return zend_hash_del(&xport_hash, protocol, strlen(protocol) + 1); 62 const char *p, *protocol = NULL; local 100 protocol = name; 104 protocol = "tcp"; 108 if (protocol) { [all...] |
| H A D | userspace.c | 516 /* {{{ proto bool stream_wrapper_register(string protocol, string classname[, integer flags]) 517 Registers a custom URL protocol handler class */ 520 char *protocol, *classname; local 526 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &protocol, &protocol_len, &classname, &classname_len, &flags) == FAILURE) { 531 uwrap->protoname = estrndup(protocol, protocol_len); 541 if (php_register_url_stream_wrapper_volatile(protocol, &uwrap->wrapper TSRMLS_CC) == SUCCESS) { 545 if (zend_hash_exists(php_stream_get_url_stream_wrappers_hash(), protocol, protocol_len + 1)) { 546 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Protocol %s:// is already defined.", protocol); 548 /* Hash doesn't exist so it must have been an invalid protocol scheme */ 549 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid protocol schem 565 char *protocol; local 586 char *protocol; local [all...] |
| H A D | streams.c | 1676 /* Validate protocol scheme names during registration 1679 static inline int php_stream_wrapper_scheme_validate(char *protocol, int protocol_len) argument 1684 if (!isalnum((int)protocol[i]) && 1685 protocol[i] != '+' && 1686 protocol[i] != '-' && 1687 protocol[i] != '.') { 1696 PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC) argument 1698 int protocol_len = strlen(protocol); 1700 if (php_stream_wrapper_scheme_validate(protocol, protocol_len) == FAILURE) { 1704 return zend_hash_add(&url_stream_wrappers_hash, protocol, protocol_le 1722 php_register_url_stream_wrapper_volatile(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC) argument 1752 const char *p, *protocol = NULL; local [all...] |
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_ext_plugin.c | 75 _mysqlnd_plugin_get_plugin_protocol_data(const MYSQLND_PROTOCOL * protocol, unsigned int plugin_id TSRMLS_DC) argument 79 if (!protocol || plugin_id >= mysqlnd_plugin_count()) { 82 DBG_RETURN((void *)((char *)protocol + sizeof(MYSQLND_PROTOCOL) + plugin_id * sizeof(void *)));
|
| H A D | mysqlnd_structs.h | 183 enum_mysqlnd_protocol_type protocol; member in struct:st_mysqlnd_options 356 typedef struct st_mysqlnd_packet_greet * (*func_mysqlnd_protocol__get_greet_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 357 typedef struct st_mysqlnd_packet_auth * (*func_mysqlnd_protocol__get_auth_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 358 typedef struct st_mysqlnd_packet_auth_response *(*func_mysqlnd_protocol__get_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 359 typedef struct st_mysqlnd_packet_change_auth_response * (*func_mysqlnd_protocol__get_change_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 360 typedef struct st_mysqlnd_packet_ok * (*func_mysqlnd_protocol__get_ok_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 361 typedef struct st_mysqlnd_packet_command * (*func_mysqlnd_protocol__get_command_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 362 typedef struct st_mysqlnd_packet_eof * (*func_mysqlnd_protocol__get_eof_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 363 typedef struct st_mysqlnd_packet_rset_header * (*func_mysqlnd_protocol__get_rset_header_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 364 typedef struct st_mysqlnd_packet_res_field * (*func_mysqlnd_protocol__get_result_field_packet)(MYSQLND_PROTOCOL * const protocol, zend_boo 865 MYSQLND_PROTOCOL * protocol; member in struct:st_mysqlnd_connection_data [all...] |
| /PHP_TRUNK/win32/ |
| H A D | sockets.c | 31 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]) argument 45 sock[0] = socket(domain, type, protocol); 66 sock[1] = socket(domain, type, protocol);
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_http.c | 165 char *protocol; local 197 /* uses contants declared in soap.c to determine ssl uri protocol */ 200 protocol = "tls"; 204 protocol = "sslv2"; 208 protocol = "sslv3"; 212 protocol = "ssl"; 216 protocol = "ssl"; 221 protocol = "ssl"; 224 protocol = "tcp"; 227 namelen = spprintf(&name, 0, "%s://%s:%d", protocol, hos [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | streamsfuncs.c | 48 /* {{{ proto array stream_socket_pair(int domain, int type, int protocol) 52 long domain, type, protocol; local 57 &domain, &type, &protocol)) { 61 if (0 != socketpair(domain, type, protocol, pair)) {
|
| /PHP_TRUNK/ext/sockets/ |
| H A D | sockets.c | 163 ZEND_ARG_INFO(0, protocol) 231 ZEND_ARG_INFO(0, protocol) 1329 /* {{{ proto resource socket_create(int domain, int type, int protocol) U 2063 /* {{{ proto bool socket_create_pair(int domain, int type, int protocol, array &fd) U 2070 long domain, type, protocol; local 2072 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lllz", &domain, &type, &protocol, &fds_array_zval) == FAILURE) { 2093 if (socketpair(domain, type, protocol, fds_array) != 0) {
|