コード例 #1
0
ファイル: Channel.cs プロジェクト: dswisher/swish-sftp
 public void HandlePacket(ChannelData packet)
 {
     // If we have a subsystem, let it deal with the data, otherwise ignore.
     if (subsystem != null)
     {
         subsystem.HandleData(packet.Data);
     }
 }