Home
last modified time | relevance | path

Searched refs:fHttpdServer (Results 1 – 2 of 2) sorted by relevance

/haiku/src/apps/poorman/
H A DPoorManServer.cpp41 fHttpdServer = httpd_initialize( in PoorManServer()
64 size_t cwdLen = strlen(fHttpdServer->cwd); in PoorManServer()
65 if (fHttpdServer->cwd[cwdLen-1] == '/') { in PoorManServer()
66 fHttpdServer->cwd[cwdLen-1] = '\0'; in PoorManServer()
69 fHttpdServer->do_list_dir = (listDir ? 1 : 0); in PoorManServer()
70 fHttpdServer->index_name = fIndexName; in PoorManServer()
80 httpd_terminate(fHttpdServer); in ~PoorManServer()
89 if (chdir(fHttpdServer->cwd) == -1) { in Run()
99 fHttpdServer->listen4_fd = httpd_initialize_listen_socket(&sa4); in Run()
106 fHttpdServer->listen6_fd = httpd_initialize_listen_socket(&sa6); in Run()
[all …]
H A DPoorManServer.h46 httpd_server* fHttpdServer; variable