Searched defs:domain (Results 1 - 9 of 9) sorted by relevance
/httpd/include/ |
H A D | apreq_cookie.h | 56 char *domain; /**< Restricts server domain */ member in struct:apreq_cookie_t
|
/httpd/modules/aaa/ |
H A D | mod_access_compat.c | 215 static int in_domain(const char *domain, const char *what) argument 217 int dl = strlen(domain); 221 if (strcasecmp(domain, &what[wl - dl]) != 0) { 234 return (domain[0] == '.' || what[wl - dl - 1] == '.');
|
H A D | mod_authz_host.c | 59 static int in_domain(const char *domain, const char *what) argument 61 int dl = strlen(domain); 65 if (strcasecmp(domain, &what[wl - dl]) != 0) { 78 return (domain[0] == '.' || what[wl - dl - 1] == '.');
|
H A D | mod_auth_digest.c | 604 c->uri_list = apr_pstrcat(cmd->pool, ", domain=\"", uri, "\"", NULL); 1136 const char *qop, *opaque, *opaque_param, *domain, *nonce; local 1196 /* setup domain attribute. We want to send this attribute wherever 1202 /* don't send domain 1207 domain = NULL; 1210 domain = conf->uri_list; 1220 domain ? domain : "",
|
/httpd/modules/dav/main/ |
H A D | util.c | 195 const char *domain; local 277 && (domain = strchr(r->server->server_hostname, '.')) != NULL) { 278 comp.hostname = apr_pstrcat(r->pool, comp.hostname, domain, NULL);
|
/httpd/modules/proxy/ |
H A D | mod_proxy.c | 885 /* fully qualified, i.e. doesn't have a domain name appended. Some proxy */ 887 /* domain in this case. I think it is better to redirect to a FQDN, since */ 889 /* The "ProxyDomain" directive determines what domain will be appended */ 890 static int proxy_needsdomain(request_rec *r, const char *url, const char *domain) argument 900 if (strchr(r->parsed_uri.hostname, '.') != NULL /* has domain, or IPv4 literal */ 907 /* Reassemble the request, but insert the domain after the host name */ 908 /* Note that the domain name always starts with a dot */ 910 domain, NULL); 1053 /* If the host doesn't have a domain name, add one and redirect. */ 1054 if (conf->domain ! [all...] |
H A D | mod_proxy.h | 140 const char *domain; /* domain name to use in absence of a domain name in the request */ member in struct:__anon275 256 const char *uds_path; /* Unix domain socket path */ 354 char uds_path[PROXY_WORKER_MAX_NAME_SIZE]; /* path to worker's unix domain socket if applicable */ 1082 * Strip a unix domain socket (UDS) prefix from the input URL
|
/httpd/modules/lua/ |
H A D | lua_request.c | 2016 const char *key, *value, *out, *path = "", *domain = ""; local 2066 /* domain */ 2067 lua_pushstring(L, "domain"); 2069 domain = luaL_optstring(L, -1, ""); 2096 /* Create domain segment */ 2097 if (domain != NULL && strlen(domain) > 0) { 2099 strdomain = apr_psprintf(r->pool, "Domain=%s;", domain);
|
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 2503 char *domain; local 2514 domain = apr_strtok(NULL, ":", &tok_cntx); 2516 if (var && val && domain) { 2556 "; domain=", domain,
|
Completed in 1070 milliseconds