4D Internet Commands v16

NET_Resolve

Home

 
4D Internet Commands v16
NET_Resolve

NET_Resolve 


 

NET_Resolve ( hostName ; ipOrHost ) -> Function result 
Parameter Type   Description
hostName  String in Host name or IP address
ipOrHost  String in Returns the opposite value
Function result  Integer in Error Code

Given a host name in the first parameter, the NET_Resolve command will return the IP address into the second parameter. If the first parameter is passed an IP address, the second parameter will yield the registered host name for that machine.

hostName is a string which contains either an IP address or a host name.

ipOrHost - If the first parameter contained a Host Name then this parameter will receive its IP address. If the IP address was specified in the first parameter then this value will receive its Host Name.

Example  

The following example first passes a host name "www.netcom.com" to the NET_Resolve command in order to obtain its IP address. The example then makes another call to the command, passing it the IP address in order to obtain its registered host name.

 C_BOOLEAN($ERR)
 C_TEXT($Resolved//Can be any sized string or text value
 $ERR:=ERRCHECK("NET_Resolve";NET_Resolve("www.netcom.com";$Resolved))
  //$Resolved was returned the value '192.100.81.100'
 $ERR:=ERRCHECK("NET_Resolve";NET_Resolve($Resolved;$Resolved))
  //$Resolved was returned the value 'www.netcom.com'

 
PROPERTIES 

Product: 4D Internet Commands
Theme: IC Internet
Number: 88921

 
HISTORY 

Created: 4D Internet Commands 6.5

 
ARTICLE USAGE

4D Internet Commands ( 4D Internet Commands v16)