summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2015-12-20 18:02:12 +0100
committerYorhel <git@yorhel.nl>2015-12-20 18:03:42 +0100
commitd9ebdd4921ed7f0c328b9606d90d1dc14ec11e9e (patch)
tree2ebcbfc95cad34ff44c857f8329bfa53af0f42b2 /src/util.h
parent36f4c73123e70e437628f424a1c47877278ab335 (diff)
Handle more FastCGI records + set CLOEXEC|NONBLOCK on all sockets
Properly using CLOEXEC everywhere is mandatory when spawning (Fast)CGI processes later on.
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 091d1ff..d0c1867 100644
--- a/src/util.h
+++ b/src/util.h
@@ -26,7 +26,7 @@
#define FCGY_NONBLOCK 1
#define FCGY_CLOEXEC 2
-int util_socket(int, int, int, uint32_t);
+int util_fd_flags(int, uint32_t);
int util_serversock(int, void *, socklen_t, uint32_t);
#endif