payload_cmsg.go 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. // Copyright 2013 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 darwin dragonfly freebsd linux netbsd openbsd solaris
  5. package ipv6
  6. import "net"
  7. // ReadFrom reads a payload of the received IPv6 datagram, from the
  8. // endpoint c, copying the payload into b. It returns the number of
  9. // bytes copied into b, the control message cm and the source address
  10. // src of the received datagram.
  11. func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, src net.Addr, err error) {
  12. if !c.ok() {
  13. return 0, nil, nil, errInvalidConn
  14. }
  15. return c.readFrom(b)
  16. }
  17. // WriteTo writes a payload of the IPv6 datagram, to the destination
  18. // address dst through the endpoint c, copying the payload from b. It
  19. // returns the number of bytes written. The control message cm allows
  20. // the IPv6 header fields and the datagram path to be specified. The
  21. // cm may be nil if control of the outgoing datagram is not required.
  22. func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.Addr) (n int, err error) {
  23. if !c.ok() {
  24. return 0, errInvalidConn
  25. }
  26. return c.writeTo(b, cm, dst)
  27. }