internal TelnetTerminal(TelnetSession session) { Session = session; ANSI_Decoder = new ANSI_Decoder(); ANSI_Decoder.KeyReady = (key) => this.ProcessKey(key); }
internal void ProcessRawData(byte[] data) { ANSI_Decoder.Decode(data); }