Re: Random local port (General questions)
Actually I was wrong. There was a bug in wodSSHTunnel. It's not fixed. Grab newest version and try it out.
Kreso
Just tried build 1.52.49 and I still get the same results.
I'm just doing a real simple function to check:
Private Sub ssh1_ChannelStart(ByVal Chan As wodSSHTunnelServLib.Channel) Handles ssh1.ChannelStart
Dim chanInfo As String =
chanInfo = Secure Channel Opened
chanInfo = chanInfo & vbCrLf & Channel: & Chan.Name
chanInfo = chanInfo & vbCrLf & Local Address: & Chan.LocalAddress
chanInfo = chanInfo & vbCrLf & Local Port: & Chan.LocalPort
chanInfo = chanInfo & vbCrLf & Remote Address: & Chan.RemoteAddress
chanInfo = chanInfo & vbCrLf & Remote Port: & Chan.RemotePort
writeToLog(EventLogEntryType.Information, chanInfo, 2)
end sub
So this should show up as soon as the channelstart event, correct?