(config: SWOBinaryDecoderConfig)
| 67 | } |
| 68 | |
| 69 | private createName(config: SWOBinaryDecoderConfig) { |
| 70 | return `SWO:${config.label || ''}[port:${this.port}, enc:${this.encoding}]`; |
| 71 | } |
| 72 | |
| 73 | public softwareEvent(packet: Packet) { |
| 74 | if (packet.port !== this.port) { return; } |
no outgoing calls
no test coverage detected