SessionChannel.cs 417 B

1234567891011121314
  1. 
  2. namespace FxSsh.Services
  3. {
  4. public class SessionChannel : Channel
  5. {
  6. public SessionChannel(ConnectionService connectionService,
  7. uint clientChannelId, uint clientInitialWindowSize, uint clientMaxPacketSize,
  8. uint serverChannelId)
  9. : base(connectionService, clientChannelId, clientInitialWindowSize, clientMaxPacketSize, serverChannelId)
  10. {
  11. }
  12. }
  13. }