Compare commits

..

1 commit

Author SHA1 Message Date
Caleb Jasik
70b553fa0c
Merge ad9b331f32 into 3ec8868982 2025-07-22 13:07:23 -05:00

View file

@ -13,7 +13,6 @@ type config struct {
Logging configLogging `yaml:"logging"` Logging configLogging `yaml:"logging"`
Stats configStats `yaml:"stats"` Stats configStats `yaml:"stats"`
Handshakes configHandshakes `yaml:"handshakes"` Handshakes configHandshakes `yaml:"handshakes"`
Tunnels configTunnels `yaml:"tunnels"`
Firewall configFirewall `yaml:"firewall"` Firewall configFirewall `yaml:"firewall"`
Relay configRelay `yaml:"relay"` Relay configRelay `yaml:"relay"`
} }
@ -65,10 +64,6 @@ func newConfig() *config {
Retries: 20, Retries: 20,
WaitRotation: 5, WaitRotation: 5,
}, },
Tunnels: configTunnels{
DropInactive: true,
InactivityTimeout: "10m",
},
Firewall: configFirewall{ Firewall: configFirewall{
Conntrack: configConntrack{ Conntrack: configConntrack{
TcpTimeout: "120h", TcpTimeout: "120h",
@ -185,11 +180,6 @@ type configHandshakes struct {
WaitRotation int `yaml:"wait_rotation"` WaitRotation int `yaml:"wait_rotation"`
} }
type configTunnels struct {
DropInactive bool `yaml:"drop_inactive"`
InactivityTimeout string `yaml:"inactivity_timeout"`
}
type configFirewall struct { type configFirewall struct {
Conntrack configConntrack `yaml:"conntrack"` Conntrack configConntrack `yaml:"conntrack"`
Outbound []configFirewallRule `yaml:"outbound"` Outbound []configFirewallRule `yaml:"outbound"`