(name string)
| 137 | } |
| 138 | |
| 139 | func (hba *HostBasedAuthentication) Origin(name string) *HostBasedAuthentication { |
| 140 | hba.origin = hba.quote(name) |
| 141 | return hba |
| 142 | } |
| 143 | |
| 144 | // Network makes hba match connection attempts from a block of IP addresses in CIDR notation. |
| 145 | func (hba *HostBasedAuthentication) Network(block string) *HostBasedAuthentication { |
no test coverage detected