mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Improve config struct
This commit is contained in:
parent
1f05420745
commit
cc78f0347d
22 changed files with 187 additions and 362 deletions
10
option/tun.go
Normal file
10
option/tun.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
package option
|
||||
|
||||
type TunInboundOptions struct {
|
||||
InterfaceName string `json:"interface_name,omitempty"`
|
||||
MTU uint32 `json:"mtu,omitempty"`
|
||||
Inet4Address *ListenPrefix `json:"inet4_address,omitempty"`
|
||||
Inet6Address *ListenPrefix `json:"inet6_address,omitempty"`
|
||||
AutoRoute bool `json:"auto_route,omitempty"`
|
||||
InboundOptions
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue