TCP makes hba match connection attempts made using TCP/IP, with or without SSL.
()
| 183 | |
| 184 | // TCP makes hba match connection attempts made using TCP/IP, with or without SSL. |
| 185 | func (hba *HostBasedAuthentication) TCP() *HostBasedAuthentication { |
| 186 | hba.origin = "host" |
| 187 | return hba |
| 188 | } |
| 189 | |
| 190 | // Users makes hba match connections by specific users. |
| 191 | func (hba *HostBasedAuthentication) Users(name string, names ...string) *HostBasedAuthentication { |
no outgoing calls