IChannelForwardedTcpip.cs 499 B

1234567891011121314151617
  1. using System.Net;
  2. namespace Renci.SshNet.Channels
  3. {
  4. /// <summary>
  5. /// A "forwarded-tcpip" SSH channel.
  6. /// </summary>
  7. internal interface IChannelForwardedTcpip
  8. {
  9. /// <summary>
  10. /// Binds the channel to the specified host.
  11. /// </summary>
  12. /// <param name="address">The IP address of the host to bind to.</param>
  13. /// <param name="port">The port to bind to.</param>
  14. void Bind(IPAddress address, uint port);
  15. }
  16. }