When sending a Close frame in response, the endpoint typically echos the status code it received.

This commit is contained in:
Luca Tabone 2016-02-16 00:55:57 +01:00
parent b824a5d853
commit bf696496cb
1 changed files with 3 additions and 1 deletions

View File

@ -726,13 +726,15 @@ func (c *Conn) advanceFrame() (int, error) {
return noFrame, err
}
case CloseMessage:
c.WriteControl(CloseMessage, []byte{}, time.Now().Add(writeWait))
echoMessage := []byte{}
closeCode := CloseNoStatusReceived
closeText := ""
if len(payload) >= 2 {
echoMessage = payload[:2]
closeCode = int(binary.BigEndian.Uint16(payload))
closeText = string(payload[2:])
}
c.WriteControl(CloseMessage, echoMessage, time.Now().Add(writeWait))
return noFrame, &CloseError{Code: closeCode, Text: closeText}
}