f00b4r
authorhackbard <hackbard>
Sat, 1 May 2004 22:25:21 +0000 (22:25 +0000)
committerhackbard <hackbard>
Sat, 1 May 2004 22:25:21 +0000 (22:25 +0000)
src/TODO
src/inet.c [new file with mode: 0644]
src/inet.h [new file with mode: 0644]
src/ivac.c [new file with mode: 0644]
src/ivac.h [new file with mode: 0644]

index f8f0cdf..0d29049 100644 (file)
--- a/src/TODO
+++ b/src/TODO
@@ -8,6 +8,7 @@ schedule:
  1st july: add minimal video support
  1st augu: minimal gtk gui
  1st sept: release of version 1.0
+ ?       : multi challenger support
 
 unsorted todo:
  - connection management
@@ -17,6 +18,7 @@ unsorted todo:
  - v4l introduction
  - gtk introduction
 
+main principle: KIS
 
 let's see :)
 frank a.k.a. hackbard
diff --git a/src/inet.c b/src/inet.c
new file mode 100644 (file)
index 0000000..7a9e41a
--- /dev/null
@@ -0,0 +1,10 @@
+/* inet.c -- network management stuff
+ *
+ * author: hackbard@hackdaworld.dyndns.org
+ *
+ */
+
+#include "inet.h"
+
+
+int 
diff --git a/src/inet.h b/src/inet.h
new file mode 100644 (file)
index 0000000..a8fbe2a
--- /dev/null
@@ -0,0 +1,13 @@
+/* inet.h -- inet headers */
+
+#ifndef INET_H
+#define INET_H
+
+/* variables */
+typedef s_net {
+  int l_fd,c_fd;
+  
+} t_net;
+
+#endif
+
diff --git a/src/ivac.c b/src/ivac.c
new file mode 100644 (file)
index 0000000..610ac1c
--- /dev/null
@@ -0,0 +1,31 @@
+/* ivac.c -- main ivac file
+ *
+ * author: hackbard@hackdaworld.dyndns.org
+ *         frank.zirkelbach@physik.uni-augsburg.de
+ *
+ * Copyright (C) 2004 Frank Zirkelbach
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ */
+
+#include "ivac.h"
+
+int main(int argc,char **argv) {
+
+
+   
+  return 1;
+}
diff --git a/src/ivac.h b/src/ivac.h
new file mode 100644 (file)
index 0000000..9e171bd
--- /dev/null
@@ -0,0 +1,21 @@
+/* ivac.h -- main ivac header file */
+
+#ifndef IVAC_H
+#define IVAC_H
+
+/* includes */
+#define _GNU_SOURCE
+#include <stdio.h>
+
+/* defines */
+#define CHAR_USERNAME 32
+
+/* variables */
+
+typedef s_ivac {
+  char username[CHAR_USERNAME];
+  t_net net;
+  
+} t_ivac;
+
+#endif