Searched defs:colon (Results 1 - 5 of 5) sorted by relevance

/httpd/support/
H A Dhtpasswd.c408 char *colon; local
423 colon = strchr(scratch, ':');
424 if (colon != NULL) {
425 *colon = '\0';
429 * If we've not got a colon on the line, this could well
452 char *hash = colon + 1;
/httpd/modules/cache/
H A Dmod_cache_socache.c193 apr_size_t key = *slider, colon = 0, len = 0; local
198 if (!colon) {
199 colon = *slider;
204 len = colon;
212 if (!colon || buffer[colon++] != ':') {
217 while (apr_isspace(buffer[colon])) {
218 colon++;
222 (const char *) buffer + colon, *slider - colon));
[all...]
/httpd/modules/metadata/
H A Dmod_headers.c42 * The header name can include the colon, or not.
438 const char *colon; local
551 if ((colon = ap_strchr_c(hdr, ':'))) {
552 hdr = apr_pstrmemdup(cmd->pool, hdr, colon-hdr);
/httpd/modules/mappers/
H A Dmod_rewrite.c3075 const char *colon = ap_strchr_c(a2 + 4, ':'); local
3077 if (colon) {
3079 colon - (a2 + 3) - 1);
3080 fname = colon + 1;
/httpd/server/
H A Dutil.c1903 const char *colon = ap_strchr_c(path, ':'); local
1906 if (colon && (!slash || colon < slash)) {

Completed in 49 milliseconds