Discuss this help topic in SecureBlackbox Forum

TElSocket.SocksResolveAddress

TElSocket     See also     


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


Specifies whether the address of destination host is resolved or passed to SOCKS server for resolving.

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 destination host is resolved or 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 (the SOCKS server is supposed to resolve it by itself).
    Default value is False.
    This property is used only when UseSocks is set.

See also:     UseSocks     SocksPort     SocksAuthentication     SocksPassword     SocksServer     SocksVersion     SocksUserCode    

Discuss this help topic in SecureBlackbox Forum