Searched refs:strchr (Results 1 - 25 of 43) sorted by relevance

12

/httpd/server/
H A Dgen_test_char.c97 if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n\r%", c)) {
101 if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n", c)) {
106 if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=~", c)) {
110 if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=/~", c)) {
114 if (!apr_isalnum(c) && !strchr(".-*_ ", c)) {
119 if (c && (apr_iscntrl(c) || strchr(" \t()<>@,;:\\\"/[]?={}", c))) {
H A Dutil_debug.c25 #if defined(strchr)
26 #undef strchr macro
45 return strchr(s,c);
55 return strchr(s,c);
H A Dutil_script.c536 if (!(l = strchr(w, ':'))) {
559 if (!(l = strchr(w, ':'))) {
833 value = strchr(key, '=');
H A Dutil_mutex.c55 char *file = strchr(meth, ':');
/httpd/modules/filters/
H A Dmod_data.c93 charset = strchr(type, ' ');
96 end = strchr(charset, ' ');
H A Dmod_reqtimeout.c538 if ((max_str = strchr(initial_str, '-'))) {
589 val = strchr(word, '=');
/httpd/modules/proxy/
H A Dmod_proxy_ftp.c157 if (strchr(FTP_GLOBBING_CHARS, *path) != NULL)
176 if (*path != '\0' && strchr(FTP_GLOBBING_CHARS, *path) != NULL)
322 strp = strchr(url, ';');
540 for (dir = path+1; (dir = strchr(dir, '/')) != NULL; )
681 searchptr = strchr(ctx->buffer, '<');
684 searchptr = strchr(ctx->buffer, '>');
818 if ((crlf = strchr(message, '\r')) != NULL ||
819 (crlf = strchr(message, '\n')) != NULL)
829 if ((crlf = strchr(message, '\r')) != NULL ||
830 (crlf = strchr(messag
[all...]
H A Dmod_proxy.c301 if ((path = strchr((char *)balancer->s->sticky, '|'))) {
878 p = strchr(url, ':');
900 if (strchr(r->parsed_uri.hostname, '.') != NULL /* has domain, or IPv4 literal */
901 || strchr(r->parsed_uri.hostname, ':') != NULL /* IPv6 literal */
1046 p = strchr(uri, ':');
1529 p = strchr(r, ':');
1539 q = strchr(p + 3, ':');
1558 if (strchr(f, ':') == NULL)
1667 char *val = strchr(word, '=');
2217 val = strchr(wor
[all...]
H A Dmod_proxy_balancer.c190 if ((end_cookie = strchr(cookie, ';')) != NULL)
192 if((end_cookie = strchr(cookie, ',')) != NULL)
301 if ((*route) && (balancer->s->sticky_separator != 0) && ((*route = strchr(*route, balancer->s->sticky_separator)) != NULL ))
948 val = strchr(key, '=');
1166 if ((path = strchr((char *)bsel->s->sticky, '|'))) {
H A Dproxy_util.c266 if (strchr(reserved, ch)) {
280 if (ch != 0 && strchr(reserved, ch)) { /* keep it encoded */
287 if (!apr_isalnum(ch) && !strchr(allowed, ch)) {
322 url = strchr(host, '/');
339 strp = strchr(user, ':');
412 if ((url = strchr(r->uri, ':')) == NULL || url[1] != '/' || url[2] != '/') {
1091 c = strchr(uri, ':');
1096 if ((c = strchr(c + 3, '/'))) {
1153 c = strchr(uri, ':');
1157 if ((q = strchr(
[all...]
/httpd/modules/mappers/
H A Dmod_userdir.c281 if (strchr(prefix + 2, ':'))
283 if (strchr(prefix, ':') && !is_absolute)
H A Dmod_negotiation.c887 hdr = strchr(hdr, '"');
1032 char *eol = strchr(tag, '\0');
1211 if (!(segend = strchr(segstart, '.')))
1212 segend = strchr(segstart, '\0');
1651 if ((p = strchr(accs[i].name, '-'))) {
/httpd/modules/metadata/
H A Dmod_cern_meta.c233 if (!(l = strchr(w, ':'))) {
300 leading_slash = strchr(scrap_book, '/');
H A Dmod_ident.c202 * Note that the strchr function below checks for \012 instead of '\n'
205 while((cp = strchr(buffer, '\012')) == NULL && i < sizeof(buffer) - 1) {
235 if ((cp = strchr(user, '\r')))
/httpd/support/
H A Drotatelogs.c517 if ((ptr = strchr(arg, 'B')) != NULL) { /* Found KB size */
520 else if ((ptr = strchr(arg, 'K')) != NULL) { /* Found KB size */
523 else if ((ptr = strchr(arg, 'M')) != NULL) { /* Found MB size */
526 else if ((ptr = strchr(arg, 'G')) != NULL) { /* Found GB size */
658 config.use_strftime = (strchr(config.szLogRoot, '%') != NULL);
H A Dlogresolve.c229 if ((space = strchr(line, ' ')) != NULL) {
H A Dhtpasswd.c236 if ((arg = strchr(*user, ':')) != NULL) {
423 colon = strchr(scratch, ':');
H A Dhtdbm.c203 cmnt = strchr(rec, ':');
269 if (strchr(htdbm->username, ':')) {
/httpd/include/
H A Dhttpd.h2241 #undef strchr macro
2242 # define strchr(s, c) ap_strchr(s,c) macro
2265 /** use this instead of strchr */
2266 # define ap_strchr(s, c) strchr(s, c)
2267 /** use this instead of strchr */
2268 # define ap_strchr_c(s, c) strchr(s, c)
/httpd/modules/arch/win32/
H A Dmod_win32.c277 while ((repl = strchr(repl, '/'))) {
295 while ((repl = strchr(repl, '/'))) {
/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c73 value = strchr(key, '=');
160 t = strchr(buf, ' ');
/httpd/modules/ssl/
H A Dssl_engine_pphrase.c444 if ((p = strchr(buf, '\n')) != NULL) {
449 if ((p = strchr(buf, '\r')) != NULL) {
H A Dssl_engine_vars.c190 if ((cp = strchr(var_library, ' ')) != NULL) {
192 if ((cp2 = strchr(cp, ' ')) != NULL)
196 if ((cp = strchr(var_library_interface, ' ')) != NULL) {
198 if ((cp2 = strchr(cp, ' ')) != NULL)
632 ptr = strchr(var, '_');
/httpd/modules/arch/netware/
H A Dmod_nw_ssl.c174 p = strchr(w, ':');
484 ports = strchr(ips, ':');
575 ports = strchr(ips, ':');
/httpd/modules/http/
H A Dbyterange_filter.c151 if (!(dash = strchr(cur, '-'))) {

Completed in 3626 milliseconds

12