Home
last modified time | relevance | path

Searched refs:port_buf (Results 1 – 1 of 1) sorted by relevance

/php-src/ext/standard/
H A Durl.c106 char port_buf[6]; in php_url_parse_ex2() local
196 memcpy(port_buf, p, (pp - p)); in php_url_parse_ex2()
197 port_buf[pp - p] = '\0'; in php_url_parse_ex2()
198 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2()
199 if (port >= 0 && port <= 65535 && end != port_buf) { in php_url_parse_ex2()
262 memcpy(port_buf, p, (e - p)); in php_url_parse_ex2()
263 port_buf[e - p] = '\0'; in php_url_parse_ex2()
264 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2()
265 if (port >= 0 && port <= 65535 && end != port_buf) { in php_url_parse_ex2()

Completed in 9 milliseconds