1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/* tables of names for values defined in constants.h
*
* Copyright (C) 1998-2002,2013 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2013-2019 Paul Wouters <pwouters@redhat.com>
* Copyright (C) 2015-2019 Andrew Cagney <cagney@gnu.org>
* Copyright (C) 2020 Yulia Kuzovkova <ukuzovkova@gmail.com>
*
* This program 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 (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
*/
/*
* Note that the array sizes are all specified; this is to enable range
* checking by code that only includes constants.h.
*/
#include "passert.h"
#include "jambuf.h"
#include "constants.h"
#include "enum_names.h"
#include "defs.h"
#include "kernel.h"
/*
* To obsolete or convert to runtime options:
* NOTYET
* NOT_YET
* PFKEY
* PLUTO_GROUP_CTL
* USE_3DES USE_AES USE_MD5 USE_SHA1 USE_SHA2
*/
/* enum kernel_policy_op_names */
static const char *kernel_policy_op_name[] = {
#define S(E) [E] = #E
S(KERNEL_POLICY_OP_ADD),
S(KERNEL_POLICY_OP_REPLACE),
#undef S
};
enum_names kernel_policy_op_names = {
0, elemsof(kernel_policy_op_name)-1,
ARRAY_REF(kernel_policy_op_name),
.en_prefix = "KERNEL_POLICY_OP_",
};
/* enum direction_names */
static const char *direction_name[] = {
#define S(E) [E-DIRECTION_INBOUND] = #E
S(DIRECTION_OUTBOUND),
S(DIRECTION_INBOUND),
#undef S
};
enum_names direction_names = {
DIRECTION_INBOUND,
DIRECTION_OUTBOUND,
ARRAY_REF(direction_name),
.en_prefix = "DIRECTION_",
};
/* */
static const struct enum_names_check pluto_enum_names_checklist[] = {
#define S(V) { #V, &V, }
S(sd_action_names),
S(natt_method_names),
S(routing_tails),
S(routing_names),
S(stf_status_names),
S(perspective_names),
S(kernel_policy_op_names),
S(direction_names),
S(shunt_kind_names),
S(shunt_policy_names),
S(keyword_auth_names),
S(keyword_host_names),
{ NULL, NULL, },
};
void init_pluto_constants(void) {
check_enum_names(pluto_enum_names_checklist);
}
|