summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-01-14 18:14:29 +0000
committerLennart Poettering <lennart@poettering.net>2004-01-14 18:14:29 +0000
commitcbd59a704e3adc48c809f14e2cf793d641dfe7ff (patch)
tree856bdf5cb682ec3c5636958baa7eb1258cb17333
parent1b34f889f90cd879367f233c90d98b18dd47d338 (diff)
add copyright messages to all files
git-svn-id: file:///home/lennart/svn/public/bidilink/trunk@4 9cde1c1d-e4d0-0310-8a68-bf217395ea82
-rw-r--r--src/bidilink.c24
-rw-r--r--src/client-tcp.c24
-rw-r--r--src/client-tcp.h20
-rw-r--r--src/client-tty.c24
-rw-r--r--src/client-tty.h20
-rw-r--r--src/client-unix.c24
-rw-r--r--src/client-unix.h20
-rw-r--r--src/exec.c24
-rw-r--r--src/exec.h20
-rw-r--r--src/server-tcp.c24
-rw-r--r--src/server-tcp.h20
-rw-r--r--src/server-tty.c24
-rw-r--r--src/server-tty.h20
-rw-r--r--src/server-unix.c24
-rw-r--r--src/server-unix.h20
-rw-r--r--src/std.c24
-rw-r--r--src/std.h20
-rw-r--r--src/stream.c24
-rw-r--r--src/stream.h19
19 files changed, 419 insertions, 0 deletions
diff --git a/src/bidilink.c b/src/bidilink.c
index 3f421bf..8493f41 100644
--- a/src/bidilink.c
+++ b/src/bidilink.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define _GNU_SOURCE
#include <stdio.h>
diff --git a/src/client-tcp.c b/src/client-tcp.c
index 78d8fc4..623a481 100644
--- a/src/client-tcp.c
+++ b/src/client-tcp.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <sys/types.h>
#include <sys/socket.h>
#include <inttypes.h>
diff --git a/src/client-tcp.h b/src/client-tcp.h
index 53f06c1..bf6a330 100644
--- a/src/client-tcp.h
+++ b/src/client-tcp.h
@@ -1,6 +1,26 @@
#ifndef fooclienttcphfoo
#define fooclienttcphfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_client_tcp(const char *args);
diff --git a/src/client-tty.c b/src/client-tty.c
index e94d560..5f31249 100644
--- a/src/client-tty.c
+++ b/src/client-tty.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
diff --git a/src/client-tty.h b/src/client-tty.h
index 9befa7b..8852895 100644
--- a/src/client-tty.h
+++ b/src/client-tty.h
@@ -1,6 +1,26 @@
#ifndef fooclientttyhfoo
#define fooclientttyhfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_client_tty(const char *args);
diff --git a/src/client-unix.c b/src/client-unix.c
index 04dd496..ffcfb05 100644
--- a/src/client-unix.c
+++ b/src/client-unix.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <sys/types.h>
#include <sys/socket.h>
#include <inttypes.h>
diff --git a/src/client-unix.h b/src/client-unix.h
index bb17b74..13d5485 100644
--- a/src/client-unix.h
+++ b/src/client-unix.h
@@ -1,6 +1,26 @@
#ifndef fooclientunixhfoo
#define fooclientunixhfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_client_unix(const char *args);
diff --git a/src/exec.c b/src/exec.c
index db4345e..92270b1 100644
--- a/src/exec.c
+++ b/src/exec.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <unistd.h>
#include <sys/types.h>
#include <assert.h>
diff --git a/src/exec.h b/src/exec.h
index a657614..3c62246 100644
--- a/src/exec.h
+++ b/src/exec.h
@@ -1,6 +1,26 @@
#ifndef fooexechfoo
#define fooexechfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_exec(const char *args);
diff --git a/src/server-tcp.c b/src/server-tcp.c
index 2a2e125..fc190f1 100644
--- a/src/server-tcp.c
+++ b/src/server-tcp.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <sys/types.h>
#include <sys/socket.h>
#include <inttypes.h>
diff --git a/src/server-tcp.h b/src/server-tcp.h
index f8b2849..c3d3da7 100644
--- a/src/server-tcp.h
+++ b/src/server-tcp.h
@@ -1,6 +1,26 @@
#ifndef fooservertcphfoo
#define fooservertcphfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_server_tcp(const char *args);
diff --git a/src/server-tty.c b/src/server-tty.c
index d3f36b1..7325bfa 100644
--- a/src/server-tty.c
+++ b/src/server-tty.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define _GNU_SOURCE
#include <assert.h>
diff --git a/src/server-tty.h b/src/server-tty.h
index 626a55f..05f8178 100644
--- a/src/server-tty.h
+++ b/src/server-tty.h
@@ -1,6 +1,26 @@
#ifndef fooserverttyhfoo
#define fooserverttyhfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_server_tty(const char *args);
diff --git a/src/server-unix.c b/src/server-unix.c
index 36f1a4c..5112583 100644
--- a/src/server-unix.c
+++ b/src/server-unix.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <sys/types.h>
#include <sys/socket.h>
#include <inttypes.h>
diff --git a/src/server-unix.h b/src/server-unix.h
index aa8693f..48910aa 100644
--- a/src/server-unix.h
+++ b/src/server-unix.h
@@ -1,6 +1,26 @@
#ifndef fooserverunixhfoo
#define fooserverunixhfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_server_unix(const char *args);
diff --git a/src/std.c b/src/std.c
index b0cc8a9..998993e 100644
--- a/src/std.c
+++ b/src/std.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <stdlib.h>
#include <assert.h>
#include <string.h>
diff --git a/src/std.h b/src/std.h
index 1c2af1c..1e1ceaf 100644
--- a/src/std.h
+++ b/src/std.h
@@ -1,6 +1,26 @@
#ifndef foostdhfoo
#define foostdhfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
#include "stream.h"
struct stream* stream_std(const char *args);
diff --git a/src/stream.c b/src/stream.c
index 80ad2c2..72bc7a1 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -1,3 +1,27 @@
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <string.h>
#include <stdio.h>
#include <assert.h>
diff --git a/src/stream.h b/src/stream.h
index 29bf46e..dead3ce 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -1,6 +1,25 @@
#ifndef foostreamhfoo
#define foostreamhfoo
+/* $Id$ */
+
+/***
+ This file is part of bidilink.
+
+ bidilink 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.
+
+ bidilink 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 bidilink; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+***/
struct stream {
int input_fd, output_fd;