mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
48 lines
984 B
Go
48 lines
984 B
Go
package remotedialer
|
|
|
|
import (
|
|
"io"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/gorilla/websocket"
|
|
)
|
|
|
|
type wsConn struct {
|
|
sync.Mutex
|
|
conn *websocket.Conn
|
|
}
|
|
|
|
func newWSConn(conn *websocket.Conn) *wsConn {
|
|
w := &wsConn{
|
|
conn: conn,
|
|
}
|
|
w.setupDeadline()
|
|
return w
|
|
}
|
|
|
|
func (w *wsConn) WriteMessage(messageType int, data []byte) error {
|
|
w.Lock()
|
|
defer w.Unlock()
|
|
w.conn.SetWriteDeadline(time.Now().Add(PingWaitDuration))
|
|
return w.conn.WriteMessage(messageType, data)
|
|
}
|
|
|
|
func (w *wsConn) NextReader() (int, io.Reader, error) {
|
|
return w.conn.NextReader()
|
|
}
|
|
|
|
func (w *wsConn) setupDeadline() {
|
|
w.conn.SetReadDeadline(time.Now().Add(PingWaitDuration))
|
|
w.conn.SetPingHandler(func(string) error {
|
|
w.Lock()
|
|
w.conn.WriteControl(websocket.PongMessage, []byte(""), time.Now().Add(time.Second))
|
|
w.Unlock()
|
|
return w.conn.SetReadDeadline(time.Now().Add(PingWaitDuration))
|
|
})
|
|
w.conn.SetPongHandler(func(string) error {
|
|
return w.conn.SetReadDeadline(time.Now().Add(PingWaitDuration))
|
|
})
|
|
|
|
}
|