mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-17 13:05:57 +00:00
14 lines
275 B
Go
14 lines
275 B
Go
|
|
package udp
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/xtls/xray-core/common/buf"
|
||
|
|
"github.com/xtls/xray-core/common/net"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Packet is a UDP packet together with its source and destination address.
|
||
|
|
type Packet struct {
|
||
|
|
Payload *buf.Buffer
|
||
|
|
Source net.Destination
|
||
|
|
Target net.Destination
|
||
|
|
}
|