Efl.Net.Server_Fd.close_on_exec

Description

Controls Close-on-Exec() using FD_CLOEXEC.

Child sockets inherit the server's settings by default. You can change the behavior using each instance Efl.Io.Closer.close_on_exec.set. Defaults to true.

Values

  • close_on_exec - If true close on exec will be used, false otherwise

Signature

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

C signature

Eina_Bool efl_net_server_fd_close_on_exec_get(const Eo *obj);
Eina_Bool efl_net_server_fd_close_on_exec_set(Eo *obj, Eina_Bool close_on_exec);

Implemented by