aboutsummaryrefslogtreecommitdiff
path: root/contrib/capso/capso.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/capso/capso.h')
-rw-r--r--contrib/capso/capso.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/capso/capso.h b/contrib/capso/capso.h
new file mode 100644
index 0000000..ae18f3a
--- /dev/null
+++ b/contrib/capso/capso.h
@@ -0,0 +1,16 @@
+#ifndef CAPSO_H
+#define CAPSO_H
+
+/*
+ * bind80 returns a socket filedescriptor that is bound to port 80 of
+ * the provided service address.
+ *
+ * Example:
+ *
+ * int fd = bind80("localhost");
+ *
+ * fd < 0 in the case of error.
+ */
+extern int bind80(const char *hostname);
+
+#endif /* ndef CAPSO_H */