Searched defs:httpd_conf_file (Results 1 - 1 of 1) sorted by relevance

/forgerock/web-agents-v4/source/
H A Dadmin.c889 * @param httpd_conf_file The entire contents of the conf file, read into a string.
894 static void find_conf_setting(char* httpd_conf_file, char* target, char* buff, size_t size) { argument
895 char* user = strstr(httpd_conf_file, target);
922 * @param httpd_conf_file The entirety of the conf file, copied into a null terminated buffer
926 static void find_user(char *httpd_conf_file, uid_t **uid, gid_t **gid) { argument
937 find_conf_setting(httpd_conf_file, "\nUser", buff, sizeof (buff));
985 * @param httpd_conf_file The entirety of the conf file, copied into a null terminated buffer
988 static void find_group(char *httpd_conf_file, gid_t **gid) { argument
998 find_conf_setting(httpd_conf_file, "\nGroup", buff, sizeof (buff));

Completed in 206 milliseconds