
#include "libraries.h"

UC_MELVYL::UC_MELVYL()
{
  HumanName = "MELVYL  = CA)";
  HostName  = "MELVYL.UCOP.edu";
  HostNumber = "31.1.0.11";
  
  nl  = "\r";
  cr  = "";
  bs  = "";
  del = " ";
  
  supports_vt100     = 1;
    // pshuang: MELVYL does provide VT100 but there's no
    // benefit to using it since only clearscreen is used
  supports_hardcopy  = 0;
  
  strLogoff = "\n\nlogoff\nlogoff\nlogoff\n";
  
  number_of_logon_steps  = 2;
  
  
  LogonSequence[0].Trigger  = "NAL? ";
/* pshuang: what do these mean?
  LogonSequence[0].vtAction = "L99\n";
  LogonSequence[0].hdAction = "I99\n";
*/
  LogonSequence[0].vtAction = "VT100\n";
  LogonSequence[0].hdAction = "TTY\n";

  LogonSequence[1].Trigger  = "";
  LogonSequence[1].Delay    = 0;
  LogonSequence[1].Action   = "\n";
}

