summaryrefslogtreecommitdiff
path: root/src/lib/ecore_con/efl_net_dialer_unix.eo
blob: a45d2be5c75f405691111122b55a9a02b3ab73c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Efl.Net.Dialer_Unix (Efl.Net.Socket_Unix, Efl.Net.Dialer) {
    [[Connects to a local AF_UNIX server.

      The dial address is a file system path (portable) or
      "abstract:ID" (Linux-only extension).

      \@note Proxies are meaningless for AF_UNIX family, thus are not
      implemented.

      @since 1.19
    ]]

    implements {
        Efl.Object.constructor;
        Efl.Object.invalidate;
        Efl.Object.destructor;
        Efl.Net.Dialer.dial;
        Efl.Net.Dialer.address_dial { get; set; }
        Efl.Net.Dialer.connected { get; set; }
        Efl.Net.Dialer.timeout_dial { get; set; }
        Efl.Io.Closer.close;
    }
}