mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-12 20:03:38 +00:00
17 lines
253 B
Go
17 lines
253 B
Go
package adapter
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
)
|
|
|
|
type InboundContext struct {
|
|
Source netip.AddrPort
|
|
Destination M.Socksaddr
|
|
Inbound string
|
|
Network string
|
|
Protocol string
|
|
Domain string
|
|
}
|