mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
20 lines
386 B
Go
20 lines
386 B
Go
package types
|
|
|
|
import "net/http"
|
|
|
|
type HandlerFunction func(Session, []byte) bool
|
|
|
|
type CheckOrigin func(r *http.Request) bool
|
|
|
|
type WebSocketPeer interface {
|
|
Send(v interface{}) error
|
|
Destroy() error
|
|
}
|
|
|
|
type WebSocketManager interface {
|
|
Start()
|
|
Shutdown() error
|
|
AddHandler(handler HandlerFunction)
|
|
Upgrade(w http.ResponseWriter, r *http.Request, checkOrigin CheckOrigin) error
|
|
}
|