NWFSE_NETWORK_ADDRESS

Returns the network address information. Used by NWGetServerConnInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint32   addressType; 
     nuint32   addressSize; 
     pnuint8   address; 
  } NWFSE_NETWORK_ADDRESS; 
  

Delphi Syntax

  Type
     NWFSE_NETWORK_ADDRESS = packed Record
        addressType : nuint32;
        addressSize : nuint32;
        address : pnuint8;
     End;
  

Fields

addressType
Specifies the type of the network transport address:
  • 1 IPX
  • 2 IP
  • 8 UDP
  • 9 TCP
addressSize
Specifies the size (in bytes) of the buffer allocated for the address and the actual size of the returned address.
address
Specifies the physical address in binary form.

Remarks

If the address is an IP address, four bytes of the address are in printable order.

HINT:The declaration of address types 1 and 2 is different from the standard declaration (found at Network Address Types).