summaryrefslogtreecommitdiff
path: root/src/lib/ecore_con/efl_net_socket_unix.eo
blob: ac3ae54da699447900c55af675a1e129e9fe5658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class Efl.Net.Socket.Unix (Efl.Net.Socket) {
    data: null;

    events {
        /* TODO: received,fd: int fd */
    }

    methods {
        /* TODO: pass_fd(int fd) */

        /* TODO:
        @property credentials {
            get {
            }

            values {
                pid: uint64; [[The process identifier of remote peer]]
                uid: uint64; [[The user identifier of remote peer]]
                gid: uint64; [[The group identifier of the remote peer]]
            }
        }
        */
    }
}