We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 084dd65 commit 0e1b88bCopy full SHA for 0e1b88b
client_handler.go
@@ -260,7 +260,7 @@ func (c *clientHandler) HasTLSForTransfers() bool {
260
return c.transferTLS
261
}
262
263
-func (c *clientHandler) GetTLSCiphersuite() (uint16, error) {
+func (c *clientHandler) GetTLSCipherSuite() (uint16, error) {
264
conn := c.conn
265
tlsConn, ok := conn.(*tls.Conn)
266
if !ok {
driver.go
@@ -189,7 +189,7 @@ type ClientContext interface {
189
HasTLSForTransfers() bool
190
191
// GetTlSCipherSuite returns ID
192
- GetTlSCipherSuite() (uint16, error)
+ GetTLSCipherSuite() (uint16, error)
193
194
// GetLastCommand returns the last received command
195
GetLastCommand() string
0 commit comments