Annotation of embedaddon/strongswan/src/libstrongswan/pen/pen.c, revision 1.1

1.1     ! misho       1: /*
        !             2:  * Copyright (C) 2011-2015 Andreas Steffen
        !             3:  * HSR Hochschule fuer Technik Rapperswil
        !             4:  *
        !             5:  * This program is free software; you can redistribute it and/or modify it
        !             6:  * under the terms of the GNU General Public License as published by the
        !             7:  * Free Software Foundation; either version 2 of the License, or (at your
        !             8:  * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
        !             9:  *
        !            10:  * This program 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 General Public License
        !            13:  * for more details.
        !            14:  */
        !            15: 
        !            16: #include "pen.h"
        !            17: 
        !            18: ENUM_BEGIN(pen_names, PEN_IETF, PEN_IETF,
        !            19:        "IETF");
        !            20: ENUM_NEXT(pen_names, PEN_IBM, PEN_IBM, PEN_IETF,
        !            21:        "IBM");
        !            22: ENUM_NEXT(pen_names, PEN_MICROSOFT, PEN_MICROSOFT, PEN_IBM,
        !            23:        "Microsoft");
        !            24: ENUM_NEXT(pen_names, PEN_REDHAT, PEN_REDHAT, PEN_MICROSOFT,
        !            25:        "Redhat");
        !            26: ENUM_NEXT(pen_names, PEN_PWG, PEN_PWG, PEN_REDHAT,
        !            27:        "PWG");
        !            28: ENUM_NEXT(pen_names, PEN_ALTIGA, PEN_ALTIGA, PEN_PWG,
        !            29:        "Altiga");
        !            30: ENUM_NEXT(pen_names, PEN_OSC, PEN_OSC, PEN_ALTIGA,
        !            31:        "OSC");
        !            32: ENUM_NEXT(pen_names, PEN_DEBIAN, PEN_DEBIAN, PEN_OSC,
        !            33:        "Debian Project");
        !            34: ENUM_NEXT(pen_names, PEN_GOOGLE, PEN_GOOGLE, PEN_DEBIAN,
        !            35:        "Google");
        !            36: ENUM_NEXT(pen_names, PEN_TCG, PEN_TCG, PEN_GOOGLE,
        !            37:        "TCG");
        !            38: ENUM_NEXT(pen_names, PEN_CANONICAL, PEN_CANONICAL, PEN_TCG,
        !            39:        "Canonical");
        !            40: ENUM_NEXT(pen_names, PEN_FEDORA, PEN_FEDORA, PEN_CANONICAL,
        !            41:        "Fedora Project");
        !            42: ENUM_NEXT(pen_names, PEN_FHH, PEN_FHH, PEN_FEDORA,
        !            43:        "FHH");
        !            44: ENUM_NEXT(pen_names, PEN_ITA, PEN_ITA, PEN_FHH,
        !            45:        "ITA-HSR");
        !            46: ENUM_NEXT(pen_names, PEN_OPENPTS, PEN_OPENPTS, PEN_ITA,
        !            47:        "OpenPTS");
        !            48: ENUM_NEXT(pen_names, PEN_UNASSIGNED, PEN_RESERVED, PEN_OPENPTS,
        !            49:        "Unassigned",
        !            50:        "Reserved");
        !            51: ENUM_END(pen_names, PEN_RESERVED);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>