summaryrefslogtreecommitdiff
path: root/ipif
diff options
context:
space:
mode:
authorian <ian>2003-07-06 21:25:01 +0000
committerian <ian>2003-07-06 21:25:01 +0000
commitc07be3595a60917243c741a53d7a2644db897a71 (patch)
tree6c47510b5fb44df7980c4be4d37657f71960e354 /ipif
parent711a074884724fb201f5e23d2256d7ea7f5ecaef (diff)
downloaduserv-utils-c07be3595a60917243c741a53d7a2644db897a71.tar.gz
copyright notices
Diffstat (limited to 'ipif')
-rw-r--r--ipif/INSTALL3
-rw-r--r--ipif/Makefile3
-rw-r--r--ipif/README3
-rwxr-xr-xipif/automechgen.sh3
-rw-r--r--ipif/blowfish.c3
-rw-r--r--ipif/blowfish.h3
-rw-r--r--ipif/blowfishspeed.c3
-rw-r--r--ipif/blowfishtest.c3
-rw-r--r--ipif/forwarder.c3
-rw-r--r--ipif/forwarder.h3
-rw-r--r--ipif/hex.c3
-rw-r--r--ipif/hex.h3
-rw-r--r--ipif/mech-blowfish.c3
-rw-r--r--ipif/mech-null.c3
-rw-r--r--ipif/mech-pkcs5.c3
-rw-r--r--ipif/mech-sequence.c3
-rw-r--r--ipif/mech-timestamp.c3
-rw-r--r--ipif/service.c3
-rwxr-xr-xipif/udptunnel-reconf.pl3
-rw-r--r--ipif/udptunnel-vpn-config.m43
20 files changed, 42 insertions, 18 deletions
diff --git a/ipif/INSTALL b/ipif/INSTALL
index de86c0a..dc3e454 100644
--- a/ipif/INSTALL
+++ b/ipif/INSTALL
@@ -665,7 +665,8 @@ UDPTUNNEL SETUP TUTORIAL
8. Copyright notice
- Copyright (C) 1999-2000 Ian Jackson
+ Copyright (C) 1999-2000,2003 Ian Jackson
+ This file is part of ipif, part of userv-utils
This is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
diff --git a/ipif/Makefile b/ipif/Makefile
index 879c013..ce3f440 100644
--- a/ipif/Makefile
+++ b/ipif/Makefile
@@ -1,6 +1,7 @@
# Makefile for ipif/udptunnel stuff
-# Copyright (C) 1999-2000 Ian Jackson
+# Copyright (C) 1999-2000,2003 Ian Jackson
+# This file is part of ipif, part of userv-utils
#
# This is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
diff --git a/ipif/README b/ipif/README
index 1814fe2..caed3ec 100644
--- a/ipif/README
+++ b/ipif/README
@@ -48,7 +48,8 @@ forwarder.c (head comment)
to read these details unless you are debugging or modifying udptunnel.
-Copyright (C) 1999-2000 Ian Jackson
+Copyright (C) 1999-2000,2003 Ian Jackson
+This file is part of ipif, part of userv-utils
This is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
diff --git a/ipif/automechgen.sh b/ipif/automechgen.sh
index d89189a..4012b85 100755
--- a/ipif/automechgen.sh
+++ b/ipif/automechgen.sh
@@ -1,7 +1,8 @@
#!/bin/sh
# generates automech.h and automech.c
-# Copyright (C) 2000 Ian Jackson
+# Copyright (C) 2000,2003 Ian Jackson
+# This file is part of ipif, part of userv-utils
#
# This is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
diff --git a/ipif/blowfish.c b/ipif/blowfish.c
index 6731c8e..dbaf02f 100644
--- a/ipif/blowfish.c
+++ b/ipif/blowfish.c
@@ -6,7 +6,8 @@
* Schneier (1995) by Ian Jackson in 1997.
*/
/*
- * Copyright (C) 1997,2000 Ian Jackson
+ * Copyright (C) 1997,2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/blowfish.h b/ipif/blowfish.h
index 70cce7f..166c672 100644
--- a/ipif/blowfish.h
+++ b/ipif/blowfish.h
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 1997,2000 Ian Jackson
+ * Copyright (C) 1997,2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/blowfishspeed.c b/ipif/blowfishspeed.c
index ece4e7d..f62172f 100644
--- a/ipif/blowfishspeed.c
+++ b/ipif/blowfishspeed.c
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 1997,2000 Ian Jackson
+ * Copyright (C) 1997,2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/blowfishtest.c b/ipif/blowfishtest.c
index c4c8252..73bb677 100644
--- a/ipif/blowfishtest.c
+++ b/ipif/blowfishtest.c
@@ -2,7 +2,8 @@
* test program for blowfish; very hard to use (sorry!)
*/
/*
- * Copyright (C) 1997,2000 Ian Jackson
+ * Copyright (C) 1997,2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/forwarder.c b/ipif/forwarder.c
index 152bf08..66f8690 100644
--- a/ipif/forwarder.c
+++ b/ipif/forwarder.c
@@ -35,7 +35,8 @@
* 16 bad trouble
*/
/*
- * Copyright (C) 2000 Ian Jackson
+ * Copyright (C) 2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/forwarder.h b/ipif/forwarder.h
index a9b88b6..2e5c5cb 100644
--- a/ipif/forwarder.h
+++ b/ipif/forwarder.h
@@ -2,7 +2,8 @@
* Encrypting tunnel for userv-ipif tunnels, header file
*/
/*
- * Copyright (C) 2000 Ian Jackson
+ * Copyright (C) 2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/hex.c b/ipif/hex.c
index 37cb75b..67e3881 100644
--- a/ipif/hex.c
+++ b/ipif/hex.c
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 1997,2000 Ian Jackson
+ * Copyright (C) 1997,2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/hex.h b/ipif/hex.h
index 236fafa..6fd588d 100644
--- a/ipif/hex.h
+++ b/ipif/hex.h
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 1997,2000 Ian Jackson
+ * Copyright (C) 1997,2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/mech-blowfish.c b/ipif/mech-blowfish.c
index 40d1de2..3f5169c 100644
--- a/ipif/mech-blowfish.c
+++ b/ipif/mech-blowfish.c
@@ -11,7 +11,8 @@
* encoding for MAC: do CBC and prepend last ciphertext block
*/
/*
- * Copyright (C) 2000 Ian Jackson
+ * Copyright (C) 2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/mech-null.c b/ipif/mech-null.c
index ab0f8d7..0b08c54 100644
--- a/ipif/mech-null.c
+++ b/ipif/mech-null.c
@@ -9,7 +9,8 @@
* encoding: no transformation
*/
/*
- * Copyright (C) 2000 Ian Jackson
+ * Copyright (C) 2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/mech-pkcs5.c b/ipif/mech-pkcs5.c
index f7d0bbd..58190b6 100644
--- a/ipif/mech-pkcs5.c
+++ b/ipif/mech-pkcs5.c
@@ -9,7 +9,8 @@
* the number of bytes appended
*/
/*
- * Copyright (C) 2000 Ian Jackson
+ * Copyright (C) 2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/mech-sequence.c b/ipif/mech-sequence.c
index 30fab47..beb14c3 100644
--- a/ipif/mech-sequence.c
+++ b/ipif/mech-sequence.c
@@ -9,7 +9,8 @@
* decoding: check increasingness (sequence), or ignore (nonce)
*/
/*
- * Copyright (C) 2000 Ian Jackson
+ * Copyright (C) 2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/mech-timestamp.c b/ipif/mech-timestamp.c
index cd31d57..793ea6c 100644
--- a/ipif/mech-timestamp.c
+++ b/ipif/mech-timestamp.c
@@ -13,7 +13,8 @@
*
*/
/*
- * Copyright (C) 2000 Ian Jackson
+ * Copyright (C) 2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/service.c b/ipif/service.c
index e0c937c..08b0ed9 100644
--- a/ipif/service.c
+++ b/ipif/service.c
@@ -91,7 +91,8 @@
* The service program should be run from userv with no-disconnect-hup.
*/
/*
- * Copyright (C) 1999-2000 Ian Jackson
+ * Copyright (C) 1999-2000,2003 Ian Jackson
+ * This file is part of ipif, part of userv-utils
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
diff --git a/ipif/udptunnel-reconf.pl b/ipif/udptunnel-reconf.pl
index e4851a4..6b77f97 100755
--- a/ipif/udptunnel-reconf.pl
+++ b/ipif/udptunnel-reconf.pl
@@ -3,6 +3,9 @@
# Set up the relevant stuff in /etc/userv/vpn, and then run
# this. It should tell you what to do to inittab and ipif-networks.
+# Copyright (C) 1999-2000,2003 Ian Jackson
+# This file is part of ipif, part of userv-utils
+#
# This 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
diff --git a/ipif/udptunnel-vpn-config.m4 b/ipif/udptunnel-vpn-config.m4
index 2f70960..42eb390 100644
--- a/ipif/udptunnel-vpn-config.m4
+++ b/ipif/udptunnel-vpn-config.m4
@@ -1,5 +1,8 @@
m4_dnl udptunnel-vpn-config.m4: macros for udptunnel-reconf et al
+m4_dnl Copyright (C) 1999-2000,2003 Ian Jackson
+m4_dnl This file is part of ipif, part of userv-utils
+
m4_dnl This is free software; you can redistribute it and/or modify it
m4_dnl under the terms of the GNU General Public License as published by
m4_dnl the Free Software Foundation; either version 2 of the License, or