messagingfw/biomsgfw/BITSTSRC/iacp4.txt
author hgs
Tue, 19 Oct 2010 11:59:06 +0530
changeset 58 6c34d0baa0b1
parent 0 8e480a14352b
permissions -rw-r--r--
201041

//SIAP11
password
Pname:Demon
Ptype:PPPS
Pdata:! Generic script for dial up connections
! Consult your service provider if
! modifications are required
start:
LOOP 3
   {
   WAIT 10
      {
      "name" login
      "ogin" login
      }
   SEND <0x0d>
   }
login:
    SEND login_name$+<0x0d>
    WAIT 10
       {
       "assword:" password
       "nvalid" failure
       "rror" failure
       "ncorrect" failure
       }
    EXIT KErrTimeOut$
password:
   SEND login_pass$+<0x0d>
   WAIT 10
      {
      "OK" success
      "HELLO" success
      "GO" success
      "IP" success
      "ddress" success
      "ocol" protocol
      "nvalid" failure
      "rror" failure
      "ncorrect" failure
      }
      EXIT KErrTimeOut$
protocol:
    SEND "PPP"+<0x0d>
    EXIT
success:
   EXIT
failure:
  EXIT KErrLoginFail$