mirror of https://github.com/Dreamacro/clash.git
Doc: add `inbound_port` field
This commit is contained in:
parent
0578e9be4d
commit
54b86eec71
|
@ -39,6 +39,7 @@ rules:
|
||||||
- dst_ip: string
|
- dst_ip: string
|
||||||
- src_port: uint16
|
- src_port: uint16
|
||||||
- dst_port: uint16
|
- dst_port: uint16
|
||||||
|
- inbound_port: uint16
|
||||||
- host: string
|
- host: string
|
||||||
- process_path: string
|
- process_path: string
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,7 @@ interface Metadata {
|
||||||
src_port: string
|
src_port: string
|
||||||
dst_ip: string
|
dst_ip: string
|
||||||
dst_port: string
|
dst_port: string
|
||||||
|
inbound_port: number
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Context {
|
interface Context {
|
||||||
|
|
|
@ -39,6 +39,7 @@ rules:
|
||||||
- dst_ip: string
|
- dst_ip: string
|
||||||
- src_port: uint16
|
- src_port: uint16
|
||||||
- dst_port: uint16
|
- dst_port: uint16
|
||||||
|
- inbound_port: uint16
|
||||||
- host: string
|
- host: string
|
||||||
- process_path: string
|
- process_path: string
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,7 @@ interface Metadata {
|
||||||
src_port: string
|
src_port: string
|
||||||
dst_ip: string
|
dst_ip: string
|
||||||
dst_port: string
|
dst_port: string
|
||||||
|
inbound_port: number
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Context {
|
interface Context {
|
||||||
|
|
Loading…
Reference in New Issue