diff options
Diffstat (limited to 'src/pkg/crypto/tls')
-rw-r--r-- | src/pkg/crypto/tls/common.go | 18 | ||||
-rw-r--r-- | src/pkg/crypto/tls/tls.go | 8 |
2 files changed, 7 insertions, 19 deletions
diff --git a/src/pkg/crypto/tls/common.go b/src/pkg/crypto/tls/common.go index 2145b7b55..36ad640cd 100644 --- a/src/pkg/crypto/tls/common.go +++ b/src/pkg/crypto/tls/common.go @@ -106,20 +106,12 @@ func mutualVersion(theirMajor, theirMinor uint8) (major, minor uint8, ok bool) { // A nop implements the NULL encryption and MAC algorithms. type nop struct{} -func (nop) XORKeyStream(buf []byte) { -} +func (nop) XORKeyStream(buf []byte) {} -func (nop) Write(buf []byte) (int, os.Error) { - return len(buf), nil; -} +func (nop) Write(buf []byte) (int, os.Error) { return len(buf), nil } -func (nop) Sum() []byte { - return nil; -} +func (nop) Sum() []byte { return nil } -func (nop) Reset() { -} +func (nop) Reset() {} -func (nop) Size() int { - return 0; -} +func (nop) Size() int { return 0 } diff --git a/src/pkg/crypto/tls/tls.go b/src/pkg/crypto/tls/tls.go index 13d8fd70b..c20e24e55 100644 --- a/src/pkg/crypto/tls/tls.go +++ b/src/pkg/crypto/tls/tls.go @@ -155,13 +155,9 @@ func (l Listener) Accept() (c net.Conn, err os.Error) { return; } -func (l Listener) Close() os.Error { - return l.listener.Close(); -} +func (l Listener) Close() os.Error { return l.listener.Close() } -func (l Listener) Addr() net.Addr { - return l.listener.Addr(); -} +func (l Listener) Addr() net.Addr { return l.listener.Addr() } // NewListener creates a Listener which accepts connections from an inner // Listener and wraps each connection with Server. |