packet.go 259 B

12345678910111213
  1. package udp
  2. import (
  3. "v2ray.com/core/v4/common/buf"
  4. "v2ray.com/core/v4/common/net"
  5. )
  6. // Packet is a UDP packet together with its source and destination address.
  7. type Packet struct {
  8. Payload *buf.Buffer
  9. Source net.Destination
  10. Target net.Destination
  11. }