AllNetworks makes hba match connection attempts made from any IP address.
()
| 105 | |
| 106 | // AllNetworks makes hba match connection attempts made from any IP address. |
| 107 | func (hba *HostBasedAuthentication) AllNetworks() *HostBasedAuthentication { |
| 108 | hba.address = "all" |
| 109 | return hba |
| 110 | } |
| 111 | |
| 112 | // AllUsers makes hba match connections made by any user. |
| 113 | func (hba *HostBasedAuthentication) AllUsers() *HostBasedAuthentication { |