Efl.Net.Socket_Udp.dont_route

Description

Avoids sent UDP packets being routed by a gateway, limiting them to the local network.

This will use SO_DONTROUTE option to avoid gateways routing sent packets outside the local network. It's useful for some protocols that only want the local area to be affected.

Values

  • dont_route - true if do not route is enabled, false otherwise

Signature

@property dont_route {
    get {}
    set {
        return: bool (false);
    }
    values {
        dont_route: bool;
    }
}

C signature

Eina_Bool efl_net_socket_udp_dont_route_get(const Eo *obj);
Eina_Bool efl_net_socket_udp_dont_route_set(Eo *obj, Eina_Bool dont_route);

Implemented by