mirror of
https://github.com/golang/net.git
synced 2026-03-31 18:37:08 +09:00
Change-Id: I3dcc786d4e9196bfba7e139948ccf459d28675af Reviewed-on: https://go-review.googlesource.com/c/net/+/162597 Run-TryBot: Mikio Hara <mikioh.public.networking@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Dave Cheney <dave@cheney.net>
16 lines
385 B
Go
16 lines
385 B
Go
// Copyright 2017 The Go 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 !linux
|
|
|
|
package socket
|
|
|
|
func (c *Conn) recvMsgs(ms []Message, flags int) (int, error) {
|
|
return 0, errNotImplemented
|
|
}
|
|
|
|
func (c *Conn) sendMsgs(ms []Message, flags int) (int, error) {
|
|
return 0, errNotImplemented
|
|
}
|