/** * @file parser.c * * @brief Generic parser class used to parse IKEv2-Header and Payload * */ /* * Copyright (C) 2005 Jan Hutter, Martin Willi * Hochschule fuer Technik Rapperswil * * 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 . * * 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. */ #include #include #include #include #include "allocator.h" #include "types.h" #include "parser.h" /** * Private data of a parser_t object */ typedef struct private_parser_s private_parser_t; struct private_parser_s { /** * Public part of a generator object */ parser_t public; /* private functions and fields */ };