When I set up an ssh tunnel and access a non-existent port, I will receive an error with `Connection refused` <img width="625" alt="image" src="https://user-images.githubusercontent.com/13031838/194819535-3459a49b-f4cc-421e-8784-b1215338a4f7.png"> But I can't throw this message by `ssh2`. <img width="482" alt="image" src="https://user-images.githubusercontent.com/13031838/194819712-60f1f5a4-ad50-4a87-b026-86c3ba021be8.png"> ```js connection.on('tcpip', (accept, reject) => { reject('some message') }) ``` maybe it can be fixed in https://github.com/mscdex/ssh2/blob/master/lib/server.js#L548-L562 <img width="790" alt="image" src="https://user-images.githubusercontent.com/13031838/194819968-d5d05a74-ab15-47b2-a164-d184e3ba8393.png">