Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHClient.SocksResolveAddress

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

See also:     SocksPort     SocksServer     SocksVersion    

Discuss this help topic in SecureBlackbox Forum