summaryrefslogtreecommitdiff
path: root/src/core/fdset.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-12-22 19:28:19 +0100
committerLennart Poettering <lennart@poettering.net>2012-12-22 22:17:58 +0100
commite83c71637eb3158ad84e1d4f7c4a1ea37f15c55a (patch)
tree4cd62f3839d658cbe470beeade8f7bcf5ff3c2f2 /src/core/fdset.h
parentee09281729588900edc06152032a0cc09557f998 (diff)
fdset: add calls for initializing fdset from socket activation fds
Diffstat (limited to 'src/core/fdset.h')
-rw-r--r--src/core/fdset.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/fdset.h b/src/core/fdset.h
index c3e408c8ad..a7bd5e2b40 100644
--- a/src/core/fdset.h
+++ b/src/core/fdset.h
@@ -21,6 +21,8 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
+#include "set.h"
+
typedef struct FDSet FDSet;
FDSet* fdset_new(void);
@@ -33,5 +35,15 @@ bool fdset_contains(FDSet *s, int fd);
int fdset_remove(FDSet *s, int fd);
int fdset_new_fill(FDSet **_s);
+int fdset_new_listen_fds(FDSet **_s, bool unset);
int fdset_cloexec(FDSet *fds, bool b);
+
+int fdset_close_others(FDSet *fds);
+
+unsigned fdset_size(FDSet *fds);
+
+int fdset_iterate(FDSet *s, Iterator *i);
+
+#define FDSET_FOREACH(fd, fds, i) \
+ for ((i) = ITERATOR_FIRST, (fd) = fdset_iterate((fds), &(i)); (fd) >= 0; (fd) = fdset_iterate((fds), &(i)))