diff options
Diffstat (limited to 'src/pkg/crypto/tls/handshake_client.go')
-rw-r--r-- | src/pkg/crypto/tls/handshake_client.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/crypto/tls/handshake_client.go b/src/pkg/crypto/tls/handshake_client.go index 4e31e7094..d07e2d89f 100644 --- a/src/pkg/crypto/tls/handshake_client.go +++ b/src/pkg/crypto/tls/handshake_client.go @@ -184,7 +184,7 @@ func (h *clientHandshake) loop(writeChan chan<- interface{}, controlChan chan<- return } - controlChan <- ConnectionState{true, "TLS_RSA_WITH_RC4_128_SHA", 0} + controlChan <- ConnectionState{HandshakeComplete: true, CipherSuite: "TLS_RSA_WITH_RC4_128_SHA"} // This should just block forever. _ = h.readHandshakeMsg() @@ -218,7 +218,7 @@ func (h *clientHandshake) error(e alertType) { for _ = range h.msgChan { } }() - h.controlChan <- ConnectionState{false, "", e} + h.controlChan <- ConnectionState{Error: e} close(h.controlChan) h.writeChan <- alert{alertLevelError, e} } |