internal ControlChannel(FtpSession host) { m_connection = new TcpClient(); m_server = "localhost"; m_port = 21; m_sessionHost = host; m_currentTransferMode = TransferMode.Unknown; }
internal SessionConnected(FtpSession h, ControlChannel ctrl) { m_host = h; m_ctrlChannel = ctrl; m_ctrlChannel.Session = this; }