本文整理汇总了Golang中golang.org/x/net/websocket.Config类的典型用法代码示例。如果您正苦于以下问题:Golang Config类的具体用法?Golang Config怎么用?Golang Config使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Config类的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
}
开发者ID:rlhatcher,项目名称:mangos,代码行数:10,代码来源:ws.go
示例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
}
开发者ID:snej,项目名称:go-blip,代码行数:15,代码来源:context.go
示例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)
}
开发者ID:johndmulhausen,项目名称:kubernetes,代码行数:17,代码来源:conn.go
示例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
}
开发者ID:gitinsky,项目名称:vnc-go-web,代码行数:19,代码来源:webSocket.go
注:本文中的golang.org/x/net/websocket.Config类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论