Quantcast
Channel: sshnet Source Code Rss Feed
Viewing all articles
Browse latest Browse all 291

Patch Uploaded: #14339

$
0
0

pmilin has uploaded a patch.

Description:
I was looking at the code for the local port forward and see that a TCPListener is being used with the address and port that is passed in. If the TCPListener is given port 0, it will find the first available. I am currently using this method to find the first available port in my code.

The trouble is that trying to find the first availabale port outside of the port forward class results in a race condition (the port could be taken in the time between when it is discovered as free and when the port forward class creates the listener on that port).

I was thinking it would be nice to have the BoundPort property on the ForwardedPortLocal class be used to get the port from the IPEndPoint that is created when Start() is called on the ForwardedPortClass. I can then use the resulting port when creating a socket connection, which is what I am doing in my code.

The code for getting the port from the listener is simply: BoundPort = ((IPEndPoint) listener.LocalEndpoint).Port

In cases where the port passed in is not zero, then the endpoint port should be the same as what was passed in. If the port passed in is zero, then BoundPort will return the actual port that is being used.

To go a step further, I created a new constructor that doesn't take a port parameter at all for the boundPort. In this case zero is the default.

The patch file in the attached zip shows the changes to the ForwardedPortLocal classes.


Viewing all articles
Browse latest Browse all 291

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>