]> git.ipfire.org Git - people/ms/strongswan.git/blame - src/libfreeswan/copyright.c
(no commit message)
[people/ms/strongswan.git] / src / libfreeswan / copyright.c
CommitLineData
997358a6
MW
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
20static const char *co[] = {
21 "Copyright (C) 1999-2005 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, 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 " Jan Hutter, Martin Willi, Andreas Steffen,",
35 " Hochschule fuer Technik Rapperswil (Switzerland).",
36 "",
37 "This program is free software; you can redistribute it and/or modify it",
38 "under the terms of the GNU General Public License as published by the",
39 "Free Software Foundation; either version 2 of the License, or (at your",
40 "option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.",
41 "",
42 "This program is distributed in the hope that it will be useful, but",
43 "WITHOUT ANY WARRANTY; without even the implied warranty of",
44 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General",
45 "Public License (file COPYING in the distribution) for more details.",
46 NULL
47};
48
49/*
50 - ipsec_copyright_notice - return copyright notice, as a vector of strings
51 */
52const char **
53ipsec_copyright_notice()
54{
55 return co;
56}