mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
bc55c25e73
- Fix #2334 - Parsing of iptables chains, contributing to progress for #1856
12 lines
226 B
Go
12 lines
226 B
Go
package firewall
|
|
|
|
import (
|
|
"fmt"
|
|
"net/netip"
|
|
)
|
|
|
|
func (c *Config) logIgnoredSubnetFamily(subnet netip.Prefix) {
|
|
c.logger.Info(fmt.Sprintf("ignoring subnet %s which has "+
|
|
"no default route matching its family", subnet))
|
|
}
|