payload_cmsg.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright 2012 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 !nacl,!plan9,!windows
  5. package ipv4
  6. import (
  7. "net"
  8. "syscall"
  9. )
  10. // ReadFrom reads a payload of the received IPv4 datagram, from the
  11. // endpoint c, copying the payload into b. It returns the number of
  12. // bytes copied into b, the control message cm and the source address
  13. // src of the received datagram.
  14. func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, src net.Addr, err error) {
  15. if !c.ok() {
  16. return 0, nil, nil, syscall.EINVAL
  17. }
  18. return c.readFrom(b)
  19. }
  20. // WriteTo writes a payload of the IPv4 datagram, to the destination
  21. // address dst through the endpoint c, copying the payload from b. It
  22. // returns the number of bytes written. The control message cm allows
  23. // the datagram path and the outgoing interface to be specified.
  24. // Currently only Darwin and Linux support this. The cm may be nil if
  25. // control of the outgoing datagram is not required.
  26. func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.Addr) (n int, err error) {
  27. if !c.ok() {
  28. return 0, syscall.EINVAL
  29. }
  30. return c.writeTo(b, cm, dst)
  31. }