Lines Matching defs:names

72     name_chain *names;          /* if non-NULL then a list of name-vhosts
75 * NVH'es names */
114 * If that ipaddr_chain has names == NULL then you're done, it's an ip-vhost.
356 new->names = NULL;
450 if (ic->names == NULL) {
460 for (nc = ic->names; nc; nc = nc->next) {
470 if (nc->server->names) {
471 apr_array_header_t *names = nc->server->names;
472 char **name = (char **)names->elts;
474 for (i = 0; i < names->nelts; ++i) {
481 apr_array_header_t *names = nc->server->wild_names;
482 char **name = (char **)names->elts;
484 for (i = 0; i < names->nelts; ++i) {
516 * add the relevant server names to the chain. Special care is taken
517 * to avoid adding ic->names until we're sure there are multiple VH'es.
525 nc->next = ic->names;
530 if (ic->names == NULL) {
532 /* first pass, set these names aside in case we see another VH.
539 * have two sets of names to link in.
542 ic->names = nc;
547 /* 3rd or more -- just keep stacking the names */
548 ic->names = nc;
598 ** two ip-based vhosts not an NVH with two names
614 ** two ip-based vhosts not an NVH with two names
842 "[strict] purely numeric host names not allowed: %s",
904 apr_array_header_t *names;
912 names = s->names;
913 if (names) {
914 char **name = (char **) names->elts;
915 for (i = 0; i < names->nelts; ++i) {
921 names = s->wild_names;
922 if (names) {
923 char **name = (char **) names->elts;
924 for (i = 0; i < names->nelts; ++i) {
995 * names we'll match have ports associated with them
1256 conn->vhost_lookup_data = trav->names;
1268 conn->vhost_lookup_data = trav->names;