search for: groupaccess_h

Displaying 1 result from an estimated 1 matches for "groupaccess_h".

Did you mean: groupaccess
2007 Nov 02
1
[Patch, enh] Permit host and IP addresses in (Allow|Deny)Groups
...* Free memory allocated for group access list. diff -r -u -N openssh-4.7p1/groupaccess.h osshGroupHostIP-4.7p1/groupaccess.h --- openssh-4.7p1/groupaccess.h 2006-08-04 19:39:40.000000000 -0700 +++ osshGroupHostIP-4.7p1/groupaccess.h 2007-11-02 14:46:08.000000000 -0700 @@ -27,8 +27,15 @@ #ifndef GROUPACCESS_H #define GROUPACCESS_H +/* Permit group at host style {Allow|Deny}Groups directive. */ +#define GROUP_MATCH_HOST_AND_IP + int ga_init(const char *, gid_t); int ga_match(char * const *, int); void ga_free(void); +#ifdef GROUP_MATCH_HOST_AND_IP +int ga_match_host_and_ip(char * const *,...