diff --git a/firewall/master.go b/firewall/master.go index 69020dad..d7b926c8 100644 --- a/firewall/master.go +++ b/firewall/master.go @@ -157,7 +157,7 @@ func checkConnectionType(conn *network.Connection, _ packet.Packet) bool { // check conn type switch conn.Scope { - case network.IncomingHost, network.IncomingLAN, network.IncomingInternet, network.IncomingInvalid: + case network.IncomingLAN, network.IncomingInternet, network.IncomingInvalid: if p.BlockInbound() { if conn.Scope == network.IncomingHost { conn.Block("inbound connections blocked") diff --git a/profile/config.go b/profile/config.go index 4464a513..ad1434fd 100644 --- a/profile/config.go +++ b/profile/config.go @@ -326,7 +326,7 @@ Examples: err = config.Register(&config.Option{ Name: "Block Inbound Connections", Key: CfgOptionBlockInboundKey, - Description: "Connections initiated towards your device. This will usually only be the case if you are running a network service or are using peer to peer software.", + Description: "Connections initiated towards your device from the LAN or Internet. This will usually only be the case if you are running a network service or are using peer to peer software.", Order: cfgOptionBlockInboundOrder, OptType: config.OptTypeInt, ExternalOptType: "security level",