Cleanup issues reported by golint.

This commit is contained in:
Gary Burd 2013-12-23 12:08:49 -08:00
parent 67d178946a
commit 707d1f6c6b
3 changed files with 4 additions and 3 deletions

View File

@ -73,6 +73,7 @@ func NewClient(netConn net.Conn, u *url.URL, requestHeader http.Header, readBufS
return c, resp, nil return c, resp, nil
} }
// A Dialer contains options for connecting to WebSocket server.
type Dialer struct { type Dialer struct {
// NetDial specifies the dial function for creating TCP connections. If // NetDial specifies the dial function for creating TCP connections. If
// NetDial is nil, net.Dial is used. // NetDial is nil, net.Dial is used.
@ -134,6 +135,7 @@ func parseURL(u string) (useTLS bool, host, port, opaque string, err error) {
return useTLS, host, port, opaque, nil return useTLS, host, port, opaque, nil
} }
// DefaultDialer is a dialer with all fields set to the default zero values.
var DefaultDialer *Dialer var DefaultDialer *Dialer
// Dial creates a new client connection. Use requestHeader to specify the // Dial creates a new client connection. Use requestHeader to specify the

View File

@ -765,7 +765,6 @@ func (c *Conn) SetPongHandler(h func(string) error) {
c.handlePong = h c.handlePong = h
} }
// SetPongHandler sets the handler for
// FormatCloseMessage formats closeCode and text as a WebSocket close message. // FormatCloseMessage formats closeCode and text as a WebSocket close message.
func FormatCloseMessage(closeCode int, text string) []byte { func FormatCloseMessage(closeCode int, text string) []byte {
buf := make([]byte, 2+len(text)) buf := make([]byte, 2+len(text))

View File

@ -8,7 +8,7 @@ import (
"encoding/json" "encoding/json"
) )
// DEPRECATED: use c.WriteJSON instead. // WriteJSON is deprecated, use c.WriteJSON instead.
func WriteJSON(c *Conn, v interface{}) error { func WriteJSON(c *Conn, v interface{}) error {
return c.WriteJSON(v) return c.WriteJSON(v)
} }
@ -30,7 +30,7 @@ func (c *Conn) WriteJSON(v interface{}) error {
return err2 return err2
} }
// DEPRECATED: use c.ReadJSON instead. // ReadJSON is deprecated, use c.ReadJSON instead.
func ReadJSON(c *Conn, v interface{}) error { func ReadJSON(c *Conn, v interface{}) error {
return c.ReadJSON(v) return c.ReadJSON(v)
} }