Searched refs:port_buf (Results 1 – 2 of 2) sorted by relevance
/PHP-7.0/sapi/phpdbg/ |
H A D | phpdbg_io.c | 262 char port_buf[8]; local 293 snprintf(port_buf, 7, "%u", port); 295 rc = getaddrinfo(addr, port_buf, &hints, &res); 297 rc = getaddrinfo(NULL, port_buf, &hints, &res);
|
/PHP-7.0/ext/standard/ |
H A D | url.c | 99 char port_buf[6]; in php_url_parse_ex() local 187 memcpy(port_buf, p, (pp - p)); in php_url_parse_ex() 188 port_buf[pp - p] = '\0'; in php_url_parse_ex() 189 port = ZEND_STRTOL(port_buf, NULL, 10); in php_url_parse_ex() 266 memcpy(port_buf, p, (e - p)); in php_url_parse_ex() 267 port_buf[e - p] = '\0'; in php_url_parse_ex() 268 port = ZEND_STRTOL(port_buf, NULL, 10); in php_url_parse_ex()
|
Completed in 13 milliseconds