aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/encoding
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-04-20 13:12:35 +0000
committerMartin Willi <martin@strongswan.org>2006-04-20 13:12:35 +0000
commitfcfeb3220fbd4e25b0ac63c541c18e8ae1f30766 (patch)
tree7ffba119beddd17e8b5b304a60856c1d21660f35 /Source/charon/encoding
parent6b3292da8570edaab0e8e7dd5b2babe0fe983dd2 (diff)
downloadstrongswan-fcfeb3220fbd4e25b0ac63c541c18e8ae1f30766.tar.bz2
strongswan-fcfeb3220fbd4e25b0ac63c541c18e8ae1f30766.tar.xz
- fixed doxygen build
- seperates now in lib and charon
Diffstat (limited to 'Source/charon/encoding')
-rw-r--r--Source/charon/encoding/payloads/proposal_substructure.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/charon/encoding/payloads/proposal_substructure.h b/Source/charon/encoding/payloads/proposal_substructure.h
index 2270a525b..506d25800 100644
--- a/Source/charon/encoding/payloads/proposal_substructure.h
+++ b/Source/charon/encoding/payloads/proposal_substructure.h
@@ -173,6 +173,16 @@ struct proposal_substructure_t {
*/
void (*set_spi) (proposal_substructure_t *this, chunk_t spi);
+ /**
+ * @brief Add this proposal_substructure to a proposal.
+ *
+ * Since a proposal_t may contain the data of multiple
+ * proposal_sbustructure_t's, it may be necessary to call
+ * the function multiple times with the same proposal.
+ *
+ * @param this calling proposal_substructure_t object
+ * @param proposal proposal where the data should be added
+ */
void (*add_to_proposal) (proposal_substructure_t *this, proposal_t *proposal);
/**