Chapter 17. TCP/IP
365
[ 4 ] Connect to TCP/IP Communications Pathway
Use the extension library SOCKET.FN3. Connecting to the TCP/IP communications pathway
requires the following settings (specified in [ 2 ]):
• IP address
• Subnet mask
• Default gateway
• PPP authentication procedure
• User name for PPP authentication
• Password for PPP authentication
There are two ways to specify these parameters.
(a) Use the system settings with the extension library SOCKET.FN3. Refer to Section 17.5
"Socket Library (SOCKET.FN3)."
Given below is an example using SOCKET.FN3.
call "socket.fn3" .fcTCnnSys interface% 'Connect to communications pathway
'(SOCKET.FN3 function #41)
'Use the returned value of [3] in
'interface%.
(b) Use user-defined values provided by the application with the extension library
SOCKET.FN3. Refer to Section 17.5 "Socket Library (SOCKET.FN3)."
Given below is an example using SOCKET.FN3.
my.adr$ = "192.168.0.125" 'IP address of the BHT
subnet$ = "255.255.255.0" 'Subnet mask
gw$ = "0.0.0.0" 'Default gateway
auth% = .soPPPPAP 'PPP authentication procedure
usr$ = "USER" 'User name for PPP
psw$ = "PASSWORD" 'Password for PPP
call "socket.fn3" .fcTCnnUsr interface%,my.adr$,subnet$,gw$,auth%,usr$,psw$
'Connect to communications pathway
'Use the returned value of [3] in
'interface%.
Comentarios a estos manuales