blob: a509a21f87af3e30ef0b18520d47e6cf21e9174d [file] [log] [blame]
khenaidood948f772021-08-11 17:49:24 -04001// Copyright 2016 The Gorilla WebSocket Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// +build go1.8
6
7package websocket
8
9import "net"
10
11func (c *Conn) writeBufs(bufs ...[]byte) error {
12 b := net.Buffers(bufs)
13 _, err := b.WriteTo(c.conn)
14 return err
15}