blob: 1559521e0382084f61c334c2ecc572a5e93b34e4 [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// Copyright 2017 The Go 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 linux,!s390x,!386
6
7package socket
8
9import (
10 "syscall"
11 "unsafe"
12)
13
14func probeProtocolStack() int {
15 var p uintptr
16 return int(unsafe.Sizeof(p))
17}
18
19func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
20 n, _, errno := syscall.Syscall6(sysRECVMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0)
21 return int(n), errnoErr(errno)
22}
23
24func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
25 n, _, errno := syscall.Syscall6(sysSENDMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0)
26 return int(n), errnoErr(errno)
27}