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.
21 lines
481 B
21 lines
481 B
package network
|
|
|
|
import "time"
|
|
|
|
type Config struct {
|
|
RouteTable int
|
|
TProxyPort int
|
|
Address string
|
|
Gateway string
|
|
Bypass []string
|
|
}
|
|
|
|
func Load(dns []string, ipv4 Config, ipv6 Config) {
|
|
loadDns(dns) // init dns server
|
|
flushNetwork() // clear network settings
|
|
loadV4Network(ipv4)
|
|
loadV6Network(ipv6)
|
|
time.Sleep(time.Second) // wait 1s for ipv6 (ND protocol)
|
|
loadV4TProxy(ipv4, getV4Cidr())
|
|
loadV6TProxy(ipv6, getV6Cidr())
|
|
}
|
|
|