sys_linux.go 681 B

12345678910111213141516171819202122
  1. // 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. // +build linux,!s390x,!386
  5. package socket
  6. import (
  7. "syscall"
  8. "unsafe"
  9. )
  10. func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
  11. n, _, errno := syscall.Syscall6(sysRECVMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0)
  12. return int(n), errnoErr(errno)
  13. }
  14. func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
  15. n, _, errno := syscall.Syscall6(sysSENDMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0)
  16. return int(n), errnoErr(errno)
  17. }