summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-10-29 11:44:44 +0200
committerMartin Mares <mj@ucw.cz>1999-10-29 11:44:44 +0200
commited6081502ad814289b9b7b5537658c3b1ad435e5 (patch)
tree75ab845ca3876e88d6ddd60b6867f9dd860f85a9 /client
parent41be4444f2f548c5cc135593b2c820180a22ff99 (diff)
downloadbird-ed6081502ad814289b9b7b5537658c3b1ad435e5.tar
bird-ed6081502ad814289b9b7b5537658c3b1ad435e5.zip
Added skeleton of the client. Does nothing, but at least compiles.
Diffstat (limited to 'client')
-rw-r--r--client/Makefile5
-rw-r--r--client/client.c16
-rw-r--r--client/client.h11
3 files changed, 32 insertions, 0 deletions
diff --git a/client/Makefile b/client/Makefile
new file mode 100644
index 0000000..0d01724
--- /dev/null
+++ b/client/Makefile
@@ -0,0 +1,5 @@
+source=client.c
+root-rel=../
+dir-name=client
+
+include ../Rules
diff --git a/client/client.c b/client/client.c
new file mode 100644
index 0000000..ea12c29
--- /dev/null
+++ b/client/client.c
@@ -0,0 +1,16 @@
+/*
+ * BIRD Client
+ *
+ * (c) 1999 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#include "nest/bird.h"
+#include "client/client.h"
+
+int
+main(int argc, char **argv)
+{
+ return client_main(argc, argv); /* Call sysdep code */
+}
diff --git a/client/client.h b/client/client.h
new file mode 100644
index 0000000..b5d6ab1
--- /dev/null
+++ b/client/client.h
@@ -0,0 +1,11 @@
+/*
+ * BIRD Client
+ *
+ * (c) 1999 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+/* sysdep code */
+
+int client_main(int argc, char **argv);