Discuss this help topic in SecureBlackbox Forum

TElBaseSocketClient.SocksResolveAddress

TElBaseSocketClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies whether the destination host address is resolved by the client or by the SOCKS server.

Declaration

[C#]
    bool SocksResolveAddress;

[VB.NET]
    Property SocksResolveAddress As Boolean

[Pascal]
    property SocksResolveAddress : Boolean;

[C++]
    bool get_SocksResolveAddress();
    void set_SocksResolveAddress(bool Value);

[PHP]
    bool get_SocksResolveAddress()
    void set_SocksResolveAddress(bool $Value)

[Java]
    boolean getSocksResolveAddress();
    void setSocksResolveAddress(boolean Value);

Description

Specifies whether the address of the destination host is resolved by the client, or is passed to SOCKS server for resolving. Usually the host name is resolved on the client system. However some policy can forbid DNS operations on client computers. Then the client needs to pass the host name to the SOCKS server unresolved (SOCKS server is supposed to resolve it itself).

This property is used only when UseSocks is set. The default value is False.

See also:     UseSocks     SocksServer    

Discuss this help topic in SecureBlackbox Forum