Searched refs:groups (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/aaa/ |
H A D | mod_authz_dbm.c | 148 const char *groups; local 166 user, conf->grpfile, conf->dbmtype, &groups); 175 if (groups == NULL) { 176 /* no groups available, so exit immediately */ 184 orig_groups = groups; 197 groups = orig_groups; 198 while (groups[0]) { 199 v = ap_getword(r->pool, &groups, ','); 226 const char *groups; local 241 user, conf->grpfile, conf->dbmtype, &groups); [all...] |
H A D | mod_authz_dbd.c | 198 apr_array_header_t *groups) 227 group = apr_array_push(groups); 242 "authz_dbd, in groups query for %s [%s]", 255 apr_array_header_t *groups = NULL; local 269 if (groups == NULL) { 270 groups = apr_array_make(r->pool, 4, sizeof(const char*)); 271 rv = authz_dbd_group_query(r, cfg, groups); 288 for (i=0; i < groups->nelts; ++i) { 289 if (!strcmp(w, ((const char**)groups->elts)[i])) { 197 authz_dbd_group_query(request_rec *r, authz_dbd_cfg *cfg, apr_array_header_t *groups) argument
|
/httpd/support/ |
H A D | dbmmanage.in | 21 # usage: dbmmanage <DBMfile> <command> <user> <password> <groups> <comment> 45 groups or comment of . (or blank) for update command retains old values 46 groups or comment of - for update command clears the existing value 47 groups or comment of - for add and adduser commands is the empty value 144 my($file,$command,$key,$crypted_pwd,$groups,$comment) = @ARGV; 247 $groups = (split /:/, $DB{$key}, 3)[1] if !$groups || $groups eq '.'; 262 $groups = '' if $groups e [all...] |
/httpd/server/ |
H A D | mpm_common.c | 284 gid_t groups[NGROUPS_MAX]; 290 groups[index++] = basegid; 298 groups[index++] = g->gr_gid; 305 return setgroups(index, groups);
|
/httpd/modules/generators/ |
H A D | mod_info.c | 716 apr_array_header_t *groups = ap_list_provider_groups(r->pool); local 723 qsort(groups->elts, groups->nelts, sizeof(ap_list_provider_groups_t), 727 for (i = 0; i < groups->nelts; i++) { 728 group = &APR_ARRAY_IDX(groups, i, ap_list_provider_groups_t);
|
Completed in 310 milliseconds