diff options
Diffstat (limited to 'daemon/httpauthd.h')
-rw-r--r-- | daemon/httpauthd.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/daemon/httpauthd.h b/daemon/httpauthd.h index 1540138..e533dde 100644 --- a/daemon/httpauthd.h +++ b/daemon/httpauthd.h @@ -138,13 +138,13 @@ ha_context_t; #define HA_MAX_ARGS 4 /* - * The maximum number of pertinent headers to read - * from the client. If you need to add valid headers + * The maximum number of pertinent headers to read/send + * from/to the client. If you need to add valid headers * make sure to update this number *and* the list * of valid headers in httpauthd.c */ -#define HA_MAX_HEADERS 2 +#define HA_MAX_HEADERS 8 /* * The maximum number of handlers. If you add @@ -183,6 +183,7 @@ typedef struct ha_request /* Additional request info */ ha_context_t* context; const char* digest_domain; + char** requested_groups; /* The buffer in use for the request */ ha_buffer_t* buf; |