diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-09 13:37:55 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-09 13:37:55 +0000 |
commit | ae4abe3546ad5338878f5d3a2996e12172e6fa8e (patch) | |
tree | fad245db1a721dc21553483e61d57d8fb47bc549 /Source/charon/parser.c | |
parent | 762ce218e726f081d8779701977df6d0fc00ce35 (diff) | |
download | strongswan-ae4abe3546ad5338878f5d3a2996e12172e6fa8e.tar.bz2 strongswan-ae4abe3546ad5338878f5d3a2996e12172e6fa8e.tar.xz |
- added
- nothing implemented
Diffstat (limited to 'Source/charon/parser.c')
-rw-r--r-- | Source/charon/parser.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Source/charon/parser.c b/Source/charon/parser.c new file mode 100644 index 000000000..dd9d649bf --- /dev/null +++ b/Source/charon/parser.c @@ -0,0 +1,47 @@ +/** + * @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 <freeswan.h> +#include <pluto/constants.h> +#include <pluto/defs.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 */ + + +}; + |