Inbound rule support

This commit is contained in:
世界 2022-07-02 14:07:50 +08:00
parent 9f4c0ff624
commit 7c57eb70e8
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
34 changed files with 622 additions and 247 deletions

View file

@ -1,8 +1,6 @@
package adapter
import (
"net/netip"
M "github.com/sagernet/sing/common/metadata"
)
@ -13,10 +11,10 @@ type Inbound interface {
}
type InboundContext struct {
Source netip.AddrPort
Destination M.Socksaddr
Inbound string
Network string
Protocol string
Source M.Socksaddr
Destination M.Socksaddr
Domain string
Protocol string
}