Add missing header files.
authorLinus Nordberg <linus@nordu.net>
Wed, 9 Mar 2011 11:48:00 +0000 (12:48 +0100)
committerLinus Nordberg <linus@nordu.net>
Wed, 9 Mar 2011 11:48:00 +0000 (12:48 +0100)
lib/conn.h [new file with mode: 0644]
lib/err.h [new file with mode: 0644]

diff --git a/lib/conn.h b/lib/conn.h
new file mode 100644 (file)
index 0000000..18d2da3
--- /dev/null
@@ -0,0 +1,6 @@
+/* Copyright 2011 NORDUnet A/S. All rights reserved.
+   See the file COPYING for licensing information.  */
+
+int conn_user_dispatch_p (const struct rs_connection *conn);
+int conn_close (struct rs_connection **connp);
+int conn_activate_timeout (struct rs_connection *conn);
diff --git a/lib/err.h b/lib/err.h
new file mode 100644 (file)
index 0000000..5e1c9c9
--- /dev/null
+++ b/lib/err.h
@@ -0,0 +1,9 @@
+/* Copyright 2011 NORDUnet A/S. All rights reserved.
+   See the file COPYING for licensing information.  */
+
+struct rs_error *err_create (unsigned int code,
+                            const char *file,
+                            int line,
+                            const char *fmt,
+                            ...);
+int err_conn_push_err (struct rs_connection *conn, struct rs_error *err);