From b6d240dcce6dfae1dc4e9a3aa68e16ffe9841426 Mon Sep 17 00:00:00 2001 From: iamqizhao Date: Wed, 26 Aug 2015 11:34:35 -0700 Subject: [PATCH] add comments --- credentials/credentials.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/credentials/credentials.go b/credentials/credentials.go index 5f103640..ad75f954 100644 --- a/credentials/credentials.go +++ b/credentials/credentials.go @@ -112,6 +112,8 @@ type TransportAuthenticator interface { Credentials } +// TLSInfo contains the auth information for a TLS authenticated connection. +// It implements the AuthInfo interface. type TLSInfo struct { state tls.ConnectionState }