Home
last modified time | relevance | path

Searched refs:vhost (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/subversion/subversion/svnserve/
Dserver.h92 svn_boolean_t vhost; /* Use virtual-host-based path to repo. */ member
161 svn_boolean_t vhost; member
Dsvnserve.c770 params.vhost = FALSE; in sub_main()
989 params.vhost = TRUE; in sub_main()
Dserve.c3884 svn_boolean_t vhost, in find_repos() argument
3906 if (! vhost) in find_repos()
4233 b->vhost = params->vhost; in construct_server_baton()
4336 err = handle_config_error(find_repos(client_url, params->root, b->vhost, in construct_server_baton()
/freebsd-12-stable/contrib/ntp/sntp/libevent/
Dhttp.c3403 struct evhttp *vhost; in evhttp_find_alias() local
3416 TAILQ_FOREACH(vhost, &http->virtualhosts, next_vhost) { in evhttp_find_alias()
3417 if (evhttp_find_alias(vhost, outhttp, hostname)) in evhttp_find_alias()
3439 struct evhttp *vhost; in evhttp_find_vhost() local
3448 TAILQ_FOREACH(vhost, &http->virtualhosts, next_vhost) { in evhttp_find_vhost()
3449 if (prefix_suffix_match(vhost->vhost_pattern, in evhttp_find_vhost()
3451 http = vhost; in evhttp_find_vhost()
3736 struct evhttp* vhost; in evhttp_free() local
3759 while ((vhost = TAILQ_FIRST(&http->virtualhosts)) != NULL) { in evhttp_free()
3760 TAILQ_REMOVE(&http->virtualhosts, vhost, next_vhost); in evhttp_free()
[all …]
/freebsd-12-stable/contrib/libevent/
Dhttp.c3403 struct evhttp *vhost; in evhttp_find_alias() local
3416 TAILQ_FOREACH(vhost, &http->virtualhosts, next_vhost) { in evhttp_find_alias()
3417 if (evhttp_find_alias(vhost, outhttp, hostname)) in evhttp_find_alias()
3439 struct evhttp *vhost; in evhttp_find_vhost() local
3448 TAILQ_FOREACH(vhost, &http->virtualhosts, next_vhost) { in evhttp_find_vhost()
3449 if (prefix_suffix_match(vhost->vhost_pattern, in evhttp_find_vhost()
3451 http = vhost; in evhttp_find_vhost()
3736 struct evhttp* vhost; in evhttp_free() local
3759 while ((vhost = TAILQ_FIRST(&http->virtualhosts)) != NULL) { in evhttp_free()
3760 TAILQ_REMOVE(&http->virtualhosts, vhost, next_vhost); in evhttp_free()
[all …]
/freebsd-12-stable/contrib/libevent/include/event2/
Dhttp.h325 struct evhttp* vhost);
336 int evhttp_remove_virtual_host(struct evhttp* http, struct evhttp* vhost);
/freebsd-12-stable/contrib/ntp/sntp/libevent/include/event2/
Dhttp.h325 struct evhttp* vhost);
336 int evhttp_remove_virtual_host(struct evhttp* http, struct evhttp* vhost);
/freebsd-12-stable/libexec/ftpd/
Dftpd.c681 char *vhost, *anonuser, *statfile, *welcome, *loginmsg; in inithosts() local
735 vhost = cp; in inithosts()
774 if (getaddrinfo(vhost, NULL, &hints, &res) != 0) in inithosts()
835 if (strcmp(vhost, hp->h_name) != 0) { in inithosts()
837 vhost = hp->h_name; in inithosts()
841 strcmp(vhost, hp->h_aliases[i]) != 0) in inithosts()
844 vhost = hp->h_name; in inithosts()
849 strcmp(hrp->hostname, vhost) != 0) { in inithosts()
854 (hrp->hostname = strdup(vhost)) == NULL) { in inithosts()
/freebsd-12-stable/usr.sbin/nfsd/
Dnfsd.c126 static void start_server(int, struct nfsd_nfsd_args *, const char *vhost);
1005 start_server(int master, struct nfsd_nfsd_args *nfsdargp, const char *vhost) in start_server() argument
1013 if (vhost == NULL) in start_server()
1016 strlcpy(hostname, vhost, sizeof (hostname)); in start_server()