mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-07 00:01:49 -04:00
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/**
|
|
* @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 */
|
|
|
|
|
|
};
|
|
|