2 * Copyright (C) 2005-2006 Martin Willi
3 * Copyright (C) 2005 Jan Hutter
4 * HSR Hochschule fuer Technik Rapperswil
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * @defgroup parser parser
19 * @{ @ingroup encoding
25 typedef struct parser_t parser_t
;
28 #include <encoding/payloads/encodings.h>
29 #include <encoding/payloads/payload.h>
32 * A parser_t class to parse IKE payloads.
34 * A parser is used for parsing one chunk of data. Multiple
35 * payloads can be parsed out of the chunk using parse_payload.
36 * The parser remains the state until destroyed.
41 * Parses the next payload.
43 * @warning Caller is responsible for freeing allocated payload.
45 * Rules for parsing are described in the payload definition.
47 * @param payload_type payload type to parse
48 * @param payload pointer where parsed payload was allocated
50 * - SUCCESSFUL if succeeded,
51 * - PARSE_ERROR if corrupted/invalid data found
53 status_t (*parse_payload
) (parser_t
*this, payload_type_t payload_type
,
57 * Gets the remaining byte count which is not currently parsed.
59 int (*get_remaining_byte_count
) (parser_t
*this);
62 * Resets the current parser context.
64 void (*reset_context
) (parser_t
*this);
67 * Set the major IKE version.
69 * @param major_version the major IKE version
71 void (*set_major_version
) (parser_t
*this, uint8_t major_version
);
74 * Destroys a parser_t object.
76 void (*destroy
) (parser_t
*this);
80 * Constructor to create a parser_t object.
82 * @param data chunk of data to parse with this parser_t object
83 * @return parser_t object
85 parser_t
*parser_create(chunk_t data
);
87 #endif /** PARSER_H_ @}*/