github.com/gorilla/websocket v1.4.0

This commit is contained in:
Jordan Liggitt
2019-06-22 11:41:53 -07:00
parent 29853a1976
commit 63e5ad08aa
30 changed files with 1003 additions and 316 deletions

15
vendor/github.com/gorilla/websocket/conn_write.go generated vendored Normal file
View File

@@ -0,0 +1,15 @@
// Copyright 2016 The Gorilla WebSocket Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build go1.8
package websocket
import "net"
func (c *Conn) writeBufs(bufs ...[]byte) error {
b := net.Buffers(bufs)
_, err := b.WriteTo(c.conn)
return err
}