
#include "libraries.h"


CARL::CARL()
{
  HumanName = "CARL";
  HostName  = "pac.carl.org";
  HostNumber = "192.54.81.128";
  
  nl  = "\r";
  cr  = "";
  
  supports_vt100     = 1;
  supports_hardcopy  = 1;
  supports_redraw    = 0; // I have not checked this.
    
  strLogoff  = "\n\n\n//exit\n//exit\n//exit\n";
  
  number_of_logon_steps  = 2;
  
  BosLibConsort_MenuNum  = "39";
  
  LogonSequence[0].Trigger  = "#:";
  LogonSequence[0].Delay    = 1;
  LogonSequence[0].vtAction = "5\n";
  LogonSequence[0].hdAction = "8\n";
  LogonSequence[1].Action   = "\n\n" + BosLibConsort_MenuNum + "\n";
}

