diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2006-11-30 09:52:04 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2006-11-30 09:52:04 +0000 |
| commit | 35bb9b4957191d07e13ae92187e64c73c94d658b (patch) | |
| tree | 2fc79df1adb2256982bade7473d90aac259081c3 | |
| parent | a61dcb8379aa957ddfa08bd74a7446256dae5b43 (diff) | |
Added missing ecp private header file.
| -rw-r--r-- | lasso/saml-2.0/ecpprivate.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lasso/saml-2.0/ecpprivate.h b/lasso/saml-2.0/ecpprivate.h new file mode 100644 index 00000000..5c6f1f6f --- /dev/null +++ b/lasso/saml-2.0/ecpprivate.h @@ -0,0 +1,44 @@ +/* $Id$ + * + * Lasso - A free implementation of the Liberty Alliance specifications. + * + * Copyright (C) 2004, 2005 Entr'ouvert + * http://lasso.entrouvert.org + * + * Authors: See AUTHORS file in top-level directory. + * + * 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. + * + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef __LASSO_ECP_PRIVATE_H__ +#define __LASSO_ECP_PRIVATE_H__ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#include <lasso/lasso_config.h> + +struct _LassoEcpPrivate +{ + char *messageID; + char *relay_state; +}; + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __LASSO_ECP_PRIVATE_H__ */ |
