mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
Fix direction of incoming TCP connections
This commit is contained in:
parent
fcfaa423fd
commit
721ba2f018
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ func (table *tcpTable) findSocket(pktInfo *packet.Info) (
|
|||
for _, socketInfo := range table.listeners {
|
||||
if localPort == socketInfo.Local.Port &&
|
||||
(socketInfo.ListensAny || localIP.Equal(socketInfo.Local.IP)) {
|
||||
return socketInfo, false
|
||||
return socketInfo, true
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue