本文整理汇总了Golang中golang.org/x/net/websocket.Config.Protocol方法的典型用法代码示例。如果您正苦于以下问题:Golang Config.Protocol方法的具体用法?Golang Config.Protocol怎么用?Golang Config.Protocol使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类golang.org/x/net/websocket.Config
的用法示例。
在下文中一共展示了Config.Protocol方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: handshake
func (l *listener) handshake(c *websocket.Config, _ *http.Request) error {
pname := l.proto.Name() + ".sp.nanomsg.org"
for _, p := range c.Protocol {
if p == pname {
c.Protocol = append([]string{}, p)
return nil
}
}
return websocket.ErrBadWebSocketProtocol
}
示例2: handshake
// Creates a WebSocket handshake handler
func handshake(config *websocket.Config, rq *http.Request) error {
ok := false
for _, proto := range config.Protocol {
if proto == blipProtocolName {
ok = true
break
}
}
if !ok {
return &websocket.ProtocolError{"I only speak BLIP"}
}
config.Protocol = []string{blipProtocolName}
return nil
}
示例3: handshake
// handshake ensures the provided user protocol matches one of the allowed protocols. It returns
// no error if no protocol is specified.
func handshake(config *websocket.Config, req *http.Request, allowed []string) error {
protocols := config.Protocol
if len(protocols) == 0 {
return nil
}
for _, protocol := range protocols {
for _, allow := range allowed {
if allow == protocol {
config.Protocol = []string{protocol}
return nil
}
}
}
return fmt.Errorf("requested protocol(s) are not supported: %v; supports %v", config.Protocol, allowed)
}
示例4: bootHandshake
func bootHandshake(config *websocket.Config, r *http.Request) error {
p := Responder{nil, r, time.Now()}
authToken := p.CheckAuthToken()
if authToken == nil || authToken.Dest == "" || authToken.Retry != "" {
p.errorLog(http.StatusForbidden, "auth token invalid")
return fmt.Errorf("auth token invalid")
}
config.Protocol = []string{"binary"}
r.Header.Set("X-Server-IP", authToken.Dest)
r.Header.Set("Access-Control-Allow-Origin", "*")
r.Header.Set("Access-Control-Allow-Methods", "GET, POST, PUT, PATCH, DELETE")
p.accessLog(http.StatusSwitchingProtocols)
return nil
}