21 lines
442 B
Go
21 lines
442 B
Go
|
package websocket_fasthttp
|
||
|
|
||
|
import (
|
||
|
"git.loafle.net/commons_go/websocket_fasthttp/websocket"
|
||
|
"github.com/valyala/fasthttp"
|
||
|
)
|
||
|
|
||
|
type SocketHandlers struct {
|
||
|
}
|
||
|
|
||
|
func (sh *SocketHandlers) Handshake(ctx *fasthttp.RequestCtx) (bool, *fasthttp.ResponseHeader) {
|
||
|
return true, nil
|
||
|
}
|
||
|
func (sh *SocketHandlers) Handle(conn *websocket.Conn, stopChan <-chan struct{}, doneChan chan<- struct{}) {
|
||
|
// no op
|
||
|
}
|
||
|
|
||
|
func (sh *SocketHandlers) Validate() {
|
||
|
|
||
|
}
|