4 * @brief Generic generator class used to generate IKEv2-header and payloads.
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 "payloads/encodings.h"
28 #include "payloads/payload.h"
31 * Generating is done in a data buffer.
32 * This is thehe start size of this buffer in Bytes.
34 #define GENERATOR_DATA_BUFFER_SIZE 500
37 * Number of bytes to increase the buffer, if it is to small.
39 #define GENERATOR_DATA_BUFFER_INCREASE_VALUE 500
42 *A generator_t object which generates payloads of specific type.
44 typedef struct generator_s generator_t
;
49 * @brief Generates a specific payload from given payload object.
51 * Remember: Header and substructures are also handled as payloads.
53 * @param this generator_t object
54 * @param[in] payload interface payload_t implementing object
56 * - SUCCESSFUL if succeeded
57 * - OUT_OF_RES if out of ressources
59 status_t (*generate_payload
) (generator_t
*this,payload_t
*payload
);
62 * Writes all generated data of current generator context to a chunk
64 * @param this generator_t object
65 * * @param[out] data chunk to write the data to
68 * - SUCCESSFUL if succeeded
69 * - OUT_OF_RES otherwise
71 status_t (*write_to_chunk
) (generator_t
*this,chunk_t
*data
);
74 * @brief Destroys a generator_t object.
76 * @param this generator_t object
78 * @return always success
80 status_t (*destroy
) (generator_t
*this);
84 * Constructor to create a generator
87 generator_t
* generator_create();
89 #endif /*GENERATOR_H_*/