overflow_gateway_websocket/rpc/gateway_rpc_handlers.go

22 lines
448 B
Go
Raw Normal View History

2017-11-27 17:12:26 +00:00
package rpc
import (
cwf "git.loafle.net/commons_go/websocket_fasthttp"
"github.com/valyala/fasthttp"
)
type GatewayRPCHandlers struct {
}
func (sh *GatewayRPCHandlers) Init(serverCTX cwf.ServerContext) error {
return nil
}
func (sh *GatewayRPCHandlers) Handshake(serverCTX cwf.ServerContext, ctx *fasthttp.RequestCtx) (id string, extensionsHeader *fasthttp.ResponseHeader) {
return "", nil
}
func (sh *GatewayRPCHandlers) Validate() {
}