summaryrefslogtreecommitdiff
path: root/zmq/utils/ipcmaxlen.h
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2014-08-11 16:33:29 -0400
committerMicah Anderson <micah@riseup.net>2014-08-11 16:33:29 -0400
commitcce638a8adf4e045ca5505afea4bda57753c31dd (patch)
treeb5e139d3359ac5b8c7b1afa8acbb1b5b6051c626 /zmq/utils/ipcmaxlen.h
initial import of debian package
Diffstat (limited to 'zmq/utils/ipcmaxlen.h')
-rw-r--r--zmq/utils/ipcmaxlen.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/zmq/utils/ipcmaxlen.h b/zmq/utils/ipcmaxlen.h
new file mode 100644
index 0000000..7218db7
--- /dev/null
+++ b/zmq/utils/ipcmaxlen.h
@@ -0,0 +1,21 @@
+/*
+
+Platform-independant detection of IPC path max length
+
+Copyright (c) 2012 Godefroid Chapelle
+
+Distributed under the terms of the New BSD License. The full license is in
+the file COPYING.BSD, distributed as part of this software.
+ */
+
+#if defined(HAVE_SYS_UN_H)
+#include "sys/un.h"
+int get_ipc_path_max_len(void) {
+ struct sockaddr_un *dummy;
+ return sizeof(dummy->sun_path) - 1;
+}
+#else
+int get_ipc_path_max_len(void) {
+ return 0;
+}
+#endif