diff options
Diffstat (limited to '3rdParty/LibIDN/src/profiles.c')
-rw-r--r-- | 3rdParty/LibIDN/src/profiles.c | 47 |
1 files changed, 28 insertions, 19 deletions
diff --git a/3rdParty/LibIDN/src/profiles.c b/3rdParty/LibIDN/src/profiles.c index f59305f..66c209a 100644 --- a/3rdParty/LibIDN/src/profiles.c +++ b/3rdParty/LibIDN/src/profiles.c | |||
@@ -1,26 +1,35 @@ | |||
1 | /* profiles.c --- Definitions of stringprep profiles. | 1 | /* profiles.c --- Definitions of stringprep profiles. |
2 | * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Simon Josefsson | 2 | Copyright (C) 2002-2015 Simon Josefsson |
3 | * | ||
4 | * This file is part of GNU Libidn. | ||
5 | * | ||
6 | * GNU Libidn is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU Lesser General Public | ||
8 | * License as published by the Free Software Foundation; either | ||
9 | * version 2.1 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | * GNU Libidn is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * Lesser General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU Lesser General Public | ||
17 | * License along with GNU Libidn; if not, write to the Free Software | ||
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA | ||
19 | * | ||
20 | */ | ||
21 | 3 | ||
4 | This file is part of GNU Libidn. | ||
5 | |||
6 | GNU Libidn is free software: you can redistribute it and/or | ||
7 | modify it under the terms of either: | ||
8 | |||
9 | * the GNU Lesser General Public License as published by the Free | ||
10 | Software Foundation; either version 3 of the License, or (at | ||
11 | your option) any later version. | ||
12 | |||
13 | or | ||
14 | |||
15 | * the GNU General Public License as published by the Free | ||
16 | Software Foundation; either version 2 of the License, or (at | ||
17 | your option) any later version. | ||
18 | |||
19 | or both in parallel, as here. | ||
20 | |||
21 | GNU Libidn is distributed in the hope that it will be useful, | ||
22 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
23 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
24 | General Public License for more details. | ||
25 | |||
26 | You should have received copies of the GNU General Public License and | ||
27 | the GNU Lesser General Public License along with this program. If | ||
28 | not, see <http://www.gnu.org/licenses/>. */ | ||
29 | |||
30 | #include <config.h> | ||
22 | #include "stringprep.h" | 31 | #include "stringprep.h" |
23 | 32 | ||
24 | const Stringprep_profiles stringprep_profiles[] = { | 33 | const Stringprep_profiles stringprep_profiles[] = { |
25 | {"Nameprep", stringprep_nameprep}, | 34 | {"Nameprep", stringprep_nameprep}, |
26 | {"KRBprep", stringprep_kerberos5}, /* Deprecate? */ | 35 | {"KRBprep", stringprep_kerberos5}, /* Deprecate? */ |