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