4 * @brief Interface of parser_t.
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 #include <encoding/payloads/encodings.h>
28 #include <encoding/payloads/payload.h>
31 typedef struct parser_t parser_t
;
34 * @brief A parser_t class to parse IKEv2 payloads.
36 * A parser is used for parsing one chunk of data. Multiple
37 * payloads can be parsed out of the chunk using parse_payload.
38 * The parser remains the state until destroyed.
48 * @brief Parses the next payload.
50 * @warning Caller is responsible for freeing allocated payload.
52 * Rules for parsing are described in the payload definition.
54 * @param this parser_t bject
55 * @param payload_type payload type to parse
56 * @param[out] payload pointer where parsed payload was allocated
58 * - SUCCESSFUL if succeeded,
59 * - PARSE_ERROR if corrupted/invalid data found
61 status_t (*parse_payload
) (parser_t
*this, payload_type_t payload_type
, payload_t
**payload
);
64 * Gets the remaining byte count which is not currently parsed.
66 * @param parser parser_t object
68 int (*get_remaining_byte_count
) (parser_t
*this);
71 * @brief Resets the current parser context.
73 * @param parser parser_t object
75 void (*reset_context
) (parser_t
*this);
78 * @brief Destroys a parser_t object.
80 * @param parser parser_t object
82 void (*destroy
) (parser_t
*this);
86 * @brief Constructor to create a parser_t object.
88 * @param data chunk of data to parse with this parser_t object
89 * @return parser_t object
93 parser_t
*parser_create(chunk_t data
);