From d75f797e25e866344f8154c9545fe154e197a7f8 Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Tue, 8 Nov 2005 09:38:00 +0000 Subject: [PATCH] - created header and c file for this type (without content) --- Source/charon/configuration.c | 24 ++++++++++++++++++++++++ Source/charon/configuration.h | 27 +++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 Source/charon/configuration.c create mode 100644 Source/charon/configuration.h diff --git a/Source/charon/configuration.c b/Source/charon/configuration.c new file mode 100644 index 000000000..2cfab1467 --- /dev/null +++ b/Source/charon/configuration.c @@ -0,0 +1,24 @@ +/** + * @file configuration.c + * + * @brief Class configuration_t. + * Object of this type represents a configuration for an IKE_SA + * + */ + +/* + * 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 . + * + * 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 "configuration.h" diff --git a/Source/charon/configuration.h b/Source/charon/configuration.h new file mode 100644 index 000000000..6e2f9d8a9 --- /dev/null +++ b/Source/charon/configuration.h @@ -0,0 +1,27 @@ +/** + * @file configuration.h + * + * @brief Class configuration_t. + * Object of this type represents a configuration for an IKE_SA + * + */ + +/* + * 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 . + * + * 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. + */ + +#ifndef CONFIGURATION_H_ +#define CONFIGURATION_H_ + +#endif /*CONFIGURATION_H_*/