home *** CD-ROM | disk | FTP | other *** search
/ EZ Est 1999 April / EZ_Est_April_1999_April_1999.iso / UTIL / WINTCPIP / DATA1.CAB / Program_Files / Cccn04.scp < prev    next >
Text File  |  1997-09-12  |  453b  |  28 lines

  1. proc main
  2.  
  3.    ; Set the port settings so we can wait for
  4.    ; non-gibberish text.
  5.  
  6.    set port databits 7
  7.    set port parity even
  8.  
  9.    transmit "^M"
  10.  
  11.    waitfor "Name:"
  12.    transmit "CCCN04^M"
  13.  
  14.    waitfor "UIC:"
  15.    transmit "dv-"
  16.    transmit $USERID
  17.    transmit "^M"
  18.  
  19.    waitfor "Entering PPP mode."
  20.  
  21.    ; Set the port settings back to allow successful
  22.    ; negotiation.
  23.    set port databits 8
  24.    set port parity none
  25.  
  26. endproc
  27.  
  28.