home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PowerPlay 1998 November
/
PowerPlay1198.bin
/
Online
/
WINCIMIE
/
SCRIPTS.LIB
/
TELENET.SCR
< prev
next >
Wrap
Text File
|
1997-05-08
|
1KB
|
50 lines
!
! Copyright (c) 1997
! by CompuServe Incorporated, Columbus, Ohio
!
! The information in this software is subject to change without
! notice and should not be construed as a commitment by CompuServe.
!
! TELENET:
! Connect to SprintNet
! Success: returns %Success
! Failure: saves error msg in %FailureMsg and returns %Failure
!
!+V
! "4.0.1"
!-V
Attempts = 3;
on cancel goto SprintNet_Cancelled;
show "Verbindungsaufbau mit SprintNet";
send "@." & %CR;
wait until 1; ! pause required for 2400 baud
send %CR & %CR;
Wait_SprintNet:
if Attempts = 0 goto SprintNet_Failed;
Attempts = Attempts - 1;
wait
"Terminal" goto send_telenet_id,
"@" goto send_telenet_host
until 85;
send %CR & %CR;
goto Wait_SprintNet;
send_telenet_id:
send "D1" & %CR;
goto Wait_SprintNet;
send_telenet_host:
send "C 202202" & %CR;
exit %Success;
SprintNet_Failed:
define %FailureMsg = "SprintNet: Keine Antwort";
exit %Failure;
SprintNet_Cancelled:
exit %Cancel;