Efl.Net.Dialer_Websocket.address_remote

Description

The remote address, similar to getpeername().

The actual value depends on the type of socket, like an IPv4 (ip:port) or IPv6 ([ip]:port) formatted for a TCP/UDP socket, the path if an Unix Local...

It's always resolved. If operations are working with domain names or URLs, these are the values the kernel reports. It's similar to getpeername() in behavior.

Values

  • address - Remote address

Overridden from Efl.Net.Socket.address_remote (get, set).

Signature

@property address_remote @pure_virtual {
    get {}
    set @protected {}
    values {
        address: string;
    }
}

C signature

const char *efl_net_socket_address_remote_get(const Eo *obj);
void efl_net_socket_address_remote_set(Eo *obj, const char *address);

Implemented by