* Write TCP end event * @param {string} key - TCP session key
(key)
| 198 | * @param {string} key - TCP session key |
| 199 | */ |
| 200 | writeTcpEnd(key) { |
| 201 | const keyBytes = Buffer.from(key, 'utf8'); |
| 202 | return this.writeMessage(NET_MSG_TCP_END, keyBytes); |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Write TCP error event |
no test coverage detected