TLS makes hba match connection attempts made using TCP/IP with TLS.
()
| 177 | |
| 178 | // TLS makes hba match connection attempts made using TCP/IP with TLS. |
| 179 | func (hba *HostBasedAuthentication) TLS() *HostBasedAuthentication { |
| 180 | hba.origin = "hostssl" |
| 181 | return hba |
| 182 | } |
| 183 | |
| 184 | // TCP makes hba match connection attempts made using TCP/IP, with or without SSL. |
| 185 | func (hba *HostBasedAuthentication) TCP() *HostBasedAuthentication { |
no outgoing calls