sys_linux.go 716 B

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