Local makes hba match connection attempts using Unix-domain sockets.
()
| 126 | |
| 127 | // Local makes hba match connection attempts using Unix-domain sockets. |
| 128 | func (hba *HostBasedAuthentication) Local() *HostBasedAuthentication { |
| 129 | hba.origin = "local" |
| 130 | return hba |
| 131 | } |
| 132 | |
| 133 | // Method specifies the authentication method to use when a connection matches hba. |
| 134 | func (hba *HostBasedAuthentication) Method(name string) *HostBasedAuthentication { |
no outgoing calls