home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Magazin 1996 March
/
CD_03_96.BIN
/
direct
/
qsockpro.qip
/
IRD.MPS
< prev
next >
Wrap
Text File
|
1996-02-14
|
969b
|
52 lines
# IRD Germany VJSLIP...
# 08/08/95 BC
String username
String password
String framing
String IPAddress
# Trace on
SetTimeout 60
CfgGetValue "Username" username
if result = 0 then
GetInput "Enter your user name" username
if result = 0 then
Print "Warning, no username entered"
else
Print "Username set to ["; username; "]"
endif
endif
CfgGetValue "Password" password
if result = 0 then
GetPassword "Enter your password" password
if result = 0 then
Print "Warning, no password entered"
else
Print "Password set."
endif
endif
# get framing layer (MPPPP, MPSLIP)
CfgGetValue "Framing" framing
if result = 0 then
Abort "Can't read 'Framing' setting from qdeck.ini"
endif
CommWaitFor "ogin:"
CommSend username
CommSend "%r"
CommWaitFor "assword:"
CommSend password
CommSend "%r"
if framing = "MPSLIP" then
print ""
Print "Getting IP address for SLIP..."
print ""
endif
END