(destinationPort uint32)
| 390 | } |
| 391 | |
| 392 | func newPortMatcher(destinationPort uint32) *portMatcher { |
| 393 | return &portMatcher{destinationPort: destinationPort} |
| 394 | } |
| 395 | |
| 396 | func (pm *portMatcher) match(data *rpcData) bool { |
| 397 | return data.destinationPort == pm.destinationPort |
no outgoing calls
no test coverage detected