]> git.ipfire.org Git - people/ms/strongswan.git/blob - src/libfreeswan/copyright.c
added Andreas Eigenmann and Joel Stillhart to copyright statement
[people/ms/strongswan.git] / src / libfreeswan / copyright.c
1 /*
2 * return IPsec copyright notice
3 * Copyright (C) 2001, 2002 Henry Spencer.
4 *
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Library General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/lgpl.txt>.
9 *
10 * This library is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 * License for more details.
14 *
15 * RCSID $Id: copyright.c,v 1.6 2005/11/02 21:51:13 as Exp $
16 */
17 #include "internal.h"
18 #include "freeswan.h"
19
20 static const char *co[] = {
21 "Copyright (C) 1999-2007 Henry Spencer, Richard Guy Briggs,",
22 " D. Hugh Redelmeier, Sandy Harris, Claudia Schmeing,",
23 " Michael Richardson, Angelos D. Keromytis, John Ioannidis,",
24 "",
25 " Ken Bantoft, Stephen J. Bevan, JuanJo Ciarlante, Mathieu Lafon,",
26 " Stephane Laroche, Kai Martius, Stephan Scholz, Tuomo Soini, Herbert Xu,",
27 "",
28 " Andreas Steffen, Martin Berner, Marco Bertossa, David Buechi,",
29 " Ueli Galizzi, Christoph Gysin, Andreas Hess, Patric Lichtsteiner,",
30 " Michael Meier, Andreas Schleiss, Ariane Seiler,",
31 " Mario Strasser, Lukas Suter, Roger Wegmann, Simon Zwahlen,",
32 " Zuercher Hochschule Winterthur (Switzerland).",
33 "",
34 " Tobias Brunner, Andreas Eigenmann, Fabian Hartmann, Noah Heusser,",
35 " Jan Hutter, Daniel Roethlisberger, Joel Stillhart, Martin Willi,",
36 " Daniel Wydler, Andreas Steffen,",
37 " Hochschule fuer Technik Rapperswil (Switzerland).",
38 "",
39 "This program is free software; you can redistribute it and/or modify it",
40 "under the terms of the GNU General Public License as published by the",
41 "Free Software Foundation; either version 2 of the License, or (at your",
42 "option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.",
43 "",
44 "This program is distributed in the hope that it will be useful, but",
45 "WITHOUT ANY WARRANTY; without even the implied warranty of",
46 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General",
47 "Public License (file COPYING in the distribution) for more details.",
48 NULL
49 };
50
51 /*
52 - ipsec_copyright_notice - return copyright notice, as a vector of strings
53 */
54 const char **
55 ipsec_copyright_notice()
56 {
57 return co;
58 }