| 9 | ) |
| 10 | |
| 11 | type WindowsFirewall struct { |
| 12 | iface *network.Endpoint |
| 13 | forwarding bool |
| 14 | redirections map[string]*Redirection |
| 15 | } |
| 16 | |
| 17 | func Make(iface *network.Endpoint) FirewallManager { |
| 18 | firewall := &WindowsFirewall{ |
nothing calls this directly
no outgoing calls
no test coverage detected