>3) My ISP uses USR 33.6s. Is there an init string for Trumpet Winsock that
>will get me at least a regular 28.8 connect so that the RealAudio 28.8
>sites don't tell me I don't have the bandwidth to listen to music?
# Specific to my Supra modem
$modemsetup = "&c1&k3m1"
$userprompt = "ogin:"
$passprompt = "assword:"
%attempts = 10
#
#
#----------------------------------------------------------
#
# initialize modem
#
output "atz"\13
if ! [input 10 OK\n]
display "Modem is not responding"\n
abort
end
#
# setup our modem commands
#
output "at"$modemsetup\13
input 10 OK\n
#
# send phone number
#
%n = 0
repeat
if %n = %attempts
display "Too many dial attempts"\n
abort
end
output "atdt"$number\13
%ok = [input 60 CONNECT]
%n = %n + 1
until %ok
input 10 \n
#
# wait till it's safe to send because some modem's hang up
# if you transmit during the connection phase
#
wait 30 dcd
#
--- SLMAIL v4.5a (#0384)
---------------
* Origin: Paul's Waka Waka BBS [206] 783-7979 Seattle, Wa. (1:343/117)
|