strongswan/Source/charon/parser.c

45 lines
1.0 KiB
C
Raw Normal View History

2005-11-09 13:37:55 +00:00
/**
* @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 <http://www.fsf.org/copyleft/gpl.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.
*/
#include <stdlib.h>
#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 */
};