NoSSL makes hba match connection attempts made over TCP/IP without SSL.
()
| 149 | |
| 150 | // NoSSL makes hba match connection attempts made over TCP/IP without SSL. |
| 151 | func (hba *HostBasedAuthentication) NoSSL() *HostBasedAuthentication { |
| 152 | hba.origin = "hostnossl" |
| 153 | return hba |
| 154 | } |
| 155 | |
| 156 | // Options specifies any options for the authentication method. |
| 157 | func (hba *HostBasedAuthentication) Options(opts map[string]string) *HostBasedAuthentication { |
no outgoing calls