messagingfw/biomsgfw/IACPTSRC/iacp04.txt
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 17 Sep 2010 08:33:04 +0300
changeset 51 58d624870d25
parent 0 8e480a14352b
permissions -rw-r--r--
Revision: 201035 Kit: 201037

//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$