From 3b8eba3a284090bdb493bb620f67092a55557bce Mon Sep 17 00:00:00 2001 From: iamqizhao Date: Tue, 21 Apr 2015 17:28:46 -0700 Subject: [PATCH] fix a comment --- credentials/credentials.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/credentials/credentials.go b/credentials/credentials.go index 7310bec8..cd31ea00 100644 --- a/credentials/credentials.go +++ b/credentials/credentials.go @@ -74,7 +74,7 @@ type Credentials interface { // authentication protocols (e.g., TLS, SSL) must implement. type TransportAuthenticator interface { // Handshake does the authentication handshake specified by the corresponding - // authentication protocol on the given rawConn. + // authentication protocol on rawConn. Handshake(addr string, rawConn net.Conn, timeout time.Duration) (net.Conn, error) // NewListener creates a listener which accepts connections with requested // authentication handshake.