blob: b469e1932f508b45237b212bf42a6539d7fb116e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
libc {
GLIBC_2.0 {
# functions used in other libraries
__connect; __send;
# a*
accept;
# b*
bind;
# c*
connect;
# g*
getpeername; getsockname; getsockopt;
# i*
isfdtype;
# l*
listen;
# r*
recv; recvfrom; recvmsg;
# s*
send; sendmsg; sendto; setsockopt; shutdown; socket; socketpair;
}
GLIBC_2.2.4 {
# Addition from P1003.1-200x
sockatmark;
}
GLIBC_PRIVATE {
# functions which have an additional interface since they are
# cancelable.
__libc_accept; __libc_send; __libc_recvfrom;
__libc_recvmsg; __libc_sendmsg; __libc_recv; __libc_sendto; __libc_connect;
}
}
|