Skip to content

Instantly share code, notes, and snippets.

@mulander
Created June 6, 2017 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mulander/cefd76ce1b9e7a6b1762f0eb7b84e6d3 to your computer and use it in GitHub Desktop.
Save mulander/cefd76ce1b9e7a6b1762f0eb7b84e6d3 to your computer and use it in GitHub Desktop.
[mulander@napalm httpd]$ ag 'srv_conf->auth'
server.c
426: srv_conf->auth = NULL;
auth
15:server.c:426: srv_conf->auth = NULL;
166:server_http.c:124: const struct auth *auth = srv_conf->auth;
190:server_http.c:1293: server_abort_http(clt, 401, srv_conf->auth_realm);
236:config.c:341: if ((srv_conf->auth = auth_byid(env->sc_auth,
237:config.c:342: srv_conf->auth_id)) == NULL)
267:config.c:435: srv_conf->auth = parent->auth;
268:config.c:436: srv_conf->auth_id = parent->auth_id;
269:config.c:437: (void)strlcpy(srv_conf->auth_realm,
270:config.c:439: sizeof(srv_conf->auth_realm));
config.c
341: if ((srv_conf->auth = auth_byid(env->sc_auth,
342: srv_conf->auth_id)) == NULL)
435: srv_conf->auth = parent->auth;
436: srv_conf->auth_id = parent->auth_id;
437: (void)strlcpy(srv_conf->auth_realm,
439: sizeof(srv_conf->auth_realm));
server_http.c
124: const struct auth *auth = srv_conf->auth;
1293: server_abort_http(clt, 401, srv_conf->auth_realm);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment