ing
This commit is contained in:
parent
27ca509636
commit
1d6e7bc5b3
24
socket.go
24
socket.go
|
@ -202,21 +202,21 @@ func (s *fasthttpWebSocket) ID() string {
|
||||||
// return s.sc, nil
|
// return s.sc, nil
|
||||||
// }
|
// }
|
||||||
|
|
||||||
func (s *fasthttpWebSocket) NextWriter(messageType int) (io.WriteCloser, error) {
|
// func (s *fasthttpWebSocket) NextWriter(messageType int) (io.WriteCloser, error) {
|
||||||
if 0 < s.sh.GetWriteTimeout() {
|
// if 0 < s.sh.GetWriteTimeout() {
|
||||||
s.SetWriteDeadline(time.Now().Add(s.sh.GetWriteTimeout() * time.Second))
|
// s.SetWriteDeadline(time.Now().Add(s.sh.GetWriteTimeout() * time.Second))
|
||||||
}
|
// }
|
||||||
|
|
||||||
return s.Conn.NextWriter(messageType)
|
// return s.Conn.NextWriter(messageType)
|
||||||
}
|
// }
|
||||||
|
|
||||||
func (s *fasthttpWebSocket) WriteMessage(messageType int, data []byte) error {
|
// func (s *fasthttpWebSocket) WriteMessage(messageType int, data []byte) error {
|
||||||
if 0 < s.sh.GetWriteTimeout() {
|
// if 0 < s.sh.GetWriteTimeout() {
|
||||||
s.SetWriteDeadline(time.Now().Add(s.sh.GetWriteTimeout() * time.Second))
|
// s.SetWriteDeadline(time.Now().Add(s.sh.GetWriteTimeout() * time.Second))
|
||||||
}
|
// }
|
||||||
|
|
||||||
return s.Conn.WriteMessage(messageType, data)
|
// return s.Conn.WriteMessage(messageType, data)
|
||||||
}
|
// }
|
||||||
|
|
||||||
func (s *fasthttpWebSocket) Close() error {
|
func (s *fasthttpWebSocket) Close() error {
|
||||||
err := s.Conn.Close()
|
err := s.Conn.Close()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user