payload_nocmsg.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. //go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !zos
  5. // +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!zos
  6. package ipv6
  7. import "net"
  8. // ReadFrom reads a payload of the received IPv6 datagram, from the
  9. // endpoint c, copying the payload into b. It returns the number of
  10. // bytes copied into b, the control message cm and the source address
  11. // src of the received datagram.
  12. func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, src net.Addr, err error) {
  13. if !c.ok() {
  14. return 0, nil, nil, errInvalidConn
  15. }
  16. if n, src, err = c.PacketConn.ReadFrom(b); err != nil {
  17. return 0, nil, nil, err
  18. }
  19. return
  20. }
  21. // WriteTo writes a payload of the IPv6 datagram, to the destination
  22. // address dst through the endpoint c, copying the payload from b. It
  23. // returns the number of bytes written. The control message cm allows
  24. // the IPv6 header fields and the datagram path to be specified. The
  25. // cm may be nil if 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, errInvalidConn
  29. }
  30. if dst == nil {
  31. return 0, errMissingAddress
  32. }
  33. return c.PacketConn.WriteTo(b, dst)
  34. }