Searched defs:part (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/lua/ |
H A D | lua_vmprep.c | 280 char *part; local 299 part = apr_pstrcat(pool, modified, ";", apr_array_pstrcat(pool, paths, ';'), 302 lua_pushstring(L, part);
|
/httpd/modules/proxy/ |
H A D | proxy_util.c | 330 /* find _last_ '@' since it might occur in user/password part */ 786 /* XXX FIXME: conf->noproxies->elts is part of an opaque structure */ 919 const char *part = url; local 922 part = ap_strstr_c(url, "://"); 923 if (part) { 924 part = ap_strchr_c(part+3, '/'); 925 if (part) { 926 l1 = strlen(part); 929 part [all...] |
/httpd/support/ |
H A D | ab.c | 71 ** Internalized the version string - this string is part 1397 char *part; local 1558 part = strstr(c->cbuff, "HTTP"); /* really HTTP/1.x_ */ 1559 if (part && strlen(part) > strlen("HTTP/1.x_")) { 1560 strncpy(respcode, (part + strlen("HTTP/1.x_")), 3);
|
/httpd/server/ |
H A D | core.c | 558 * these are part of the core server config. 818 * part of the core anyway (and in fact, it isn't publicised to other 2840 const char *portstr, *part; local 2852 part = ap_strstr_c(arg, "://"); 2854 if (part) { 2855 scheme = apr_pstrndup(cmd->pool, arg, part - arg); 2858 part += 3; 2860 part = arg; 2863 portstr = ap_strchr_c(part, ':'); 2865 cmd->server->server_hostname = apr_pstrndup(cmd->pool, part, [all...] |
Completed in 748 milliseconds