diff --git a/Source/charon/message.c b/Source/charon/message.c new file mode 100644 index 0000000000..b7c86a9aa3 --- /dev/null +++ b/Source/charon/message.c @@ -0,0 +1,23 @@ +/** + * @file message.c + * + * @brief Class message_t. Object of this type represents an IKEv2-Message + * + */ + +/* + * 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 "message.h" diff --git a/Source/charon/message.h b/Source/charon/message.h new file mode 100644 index 0000000000..0ac72212fc --- /dev/null +++ b/Source/charon/message.h @@ -0,0 +1,26 @@ +/** + * @file message.h + * + * @brief Class message_t. Object of this type represents an IKEv2-Message + * + */ + +/* + * 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 MESSAGE_H_ +#define MESSAGE_H_ + +#endif /*MESSAGE_H_*/