Searched refs:colon (Results 1 – 7 of 7) sorted by relevance
| /mOS-networking-stack/samples/lighttpd-1.4.32/src/ |
| H A D | mod_evhost.c | 169 char *colon = ptr; /* needed to filter out the colon (if exists) */ in mod_evhost_parse_host() local 180 colon = ptr; in mod_evhost_parse_host() 190 buffer_copy_string_len(ds->value, ptr, colon-ptr); in mod_evhost_parse_host() 196 if (colon != con->uri.authority->ptr) { in mod_evhost_parse_host() 199 if (ptr != colon - 1) { in mod_evhost_parse_host() 204 buffer_copy_string_len(ds->value,ptr+1,colon-ptr-1); in mod_evhost_parse_host() 208 colon = ptr; in mod_evhost_parse_host() 213 if (colon != ptr) { in mod_evhost_parse_host() 217 buffer_copy_string_len(ds->value,ptr,colon-ptr); in mod_evhost_parse_host() 294 char *colon = strchr(con->uri.authority->ptr, ':'); in mod_evhost_uri_handler() local [all …]
|
| H A D | request.c | 18 char *colon; in request_check_hostname() local 73 if (NULL != (colon = memchr(host->ptr, ':', host_len))) { in request_check_hostname() 74 char *c = colon + 1; in request_check_hostname() 82 host_len = colon - host->ptr; in request_check_hostname() 91 if (NULL != colon) memmove(colon-1, colon, host->used - host_len); in request_check_hostname()
|
| H A D | mod_accesslog.c | 862 const char *colon; in REQUESTDONE_FUNC() local 865 colon = strstr(srvtoken->ptr, "]:"); in REQUESTDONE_FUNC() 867 colon = strchr(srvtoken->ptr, ':'); in REQUESTDONE_FUNC() 869 if (colon) { in REQUESTDONE_FUNC() 870 buffer_append_string(b, colon+1); in REQUESTDONE_FUNC()
|
| H A D | mod_cgi.c | 816 const char *colon = strstr(con->server_name->ptr, "]:"); in cgi_create_env() local 817 if (colon) len = (colon + 1) - con->server_name->ptr; in cgi_create_env() 819 const char *colon = strchr(con->server_name->ptr, ':'); in cgi_create_env() local 820 if (colon) len = colon - con->server_name->ptr; in cgi_create_env()
|
| H A D | mod_scgi.c | 1489 const char *colon = strstr(con->server_name->ptr, "]:"); in scgi_create_env() local 1490 if (colon) len = (colon + 1) - con->server_name->ptr; in scgi_create_env() 1492 const char *colon = strchr(con->server_name->ptr, ':'); in scgi_create_env() local 1493 if (colon) len = colon - con->server_name->ptr; in scgi_create_env()
|
| H A D | mod_fastcgi.c | 1862 const char *colon = strstr(con->server_name->ptr, "]:"); in fcgi_create_env() local 1863 if (colon) len = (colon + 1) - con->server_name->ptr; in fcgi_create_env() 1865 const char *colon = strchr(con->server_name->ptr, ':'); in fcgi_create_env() local 1866 if (colon) len = colon - con->server_name->ptr; in fcgi_create_env()
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/doc/outdated/ |
| H A D | authentication.txt | 68 seperated by a colon. Each entry is terminated by a single 79 seperated by a colon. Each entry is terminated by a single 95 password seperated by a colon. Each entry is terminated
|