mirror of https://github.com/dnomd343/XProxy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
264 B
19 lines
264 B
2 years ago
|
package network
|
||
|
|
||
|
type Config struct {
|
||
|
IPv4 struct {
|
||
|
Address string
|
||
|
Gateway string
|
||
|
RouteTable int
|
||
|
TProxyPort int
|
||
|
}
|
||
|
V4RouteTable int
|
||
|
V6RouteTable int
|
||
|
V4TProxyPort int
|
||
|
V6TProxyPort int
|
||
|
}
|
||
|
|
||
|
func Load() {
|
||
|
|
||
|
}
|