Displaying 1 result from an estimated 1 matches for "lateswt".
Did you mean:
latest
2016 Dec 20
0
[Bug 1104] New: Use close on exec flags instead of fcntl
...S (please indicate timestamp)
Hardware: x86_64
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: iptables
Assignee: netfilter-buglog at lists.netfilter.org
Reporter: g.gupta at samsung.com
Now in lateswt versions of glibc, close on exec flags are available for
file/socket open functions which are better than using fcntl.
Below is current usage of fcntl in iptables:
./libxtables/xtables.c: if (fcntl(procfile, F_SETFD, FD_CLOEXEC) == -1) {
./libxtables/xtables.c: if (fcntl(sockfd, F_SETFD, FD_CLOEXEC...