hid: rename connCloseWrite to connCloseWriter

This commit is contained in:
Přemysl Eric Janouch 2018-08-06 12:06:42 +02:00
parent e9bcd0fa53
commit 09d7a10b69
1 changed files with 11 additions and 11 deletions

View File

@ -563,7 +563,7 @@ func ircIsValidFingerprint(fp string) bool {
// --- Clients (equals users) -------------------------------------------------- // --- Clients (equals users) --------------------------------------------------
type connCloseWrite interface { type connCloseWriter interface {
net.Conn net.Conn
CloseWrite() error CloseWrite() error
} }
@ -587,15 +587,15 @@ const (
) )
type client struct { type client struct {
transport net.Conn // underlying connection transport net.Conn // underlying connection
tls *tls.Conn // TLS, if detected tls *tls.Conn // TLS, if detected
conn connCloseWrite // high-level connection conn connCloseWriter // high-level connection
recvQ []byte // unprocessed input recvQ []byte // unprocessed input
sendQ []byte // unprocessed output sendQ []byte // unprocessed output
reading bool // whether a reading goroutine is running reading bool // whether a reading goroutine is running
writing bool // whether a writing goroutine is running writing bool // whether a writing goroutine is running
closing bool // whether we're closing the connection closing bool // whether we're closing the connection
killTimer *time.Timer // hard kill timeout killTimer *time.Timer // hard kill timeout
opened time.Time // when the connection was opened opened time.Time // when the connection was opened
nSentMessages uint // number of sent messages total nSentMessages uint // number of sent messages total
@ -2853,7 +2853,7 @@ func ircProcessMessage(c *client, msg *message, raw string) {
// Handle the results from initializing the client's connection. // Handle the results from initializing the client's connection.
func (c *client) onPrepared(host string, isTLS bool) { func (c *client) onPrepared(host string, isTLS bool) {
if !isTLS { if !isTLS {
c.conn = c.transport.(connCloseWrite) c.conn = c.transport.(connCloseWriter)
} else if tlsConf != nil { } else if tlsConf != nil {
c.tls = tls.Server(c.transport, tlsConf) c.tls = tls.Server(c.transport, tlsConf)
c.conn = c.tls c.conn = c.tls