diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-11-09 15:08:01 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-11-09 15:08:14 +0100 |
commit | 236eb5851a7d86950b93211aba4a16bd22b73ed4 (patch) | |
tree | f0e14207d4d22d0ed40446b6ef8efc2141a6ff65 /src | |
parent | 44566c2238fe2e8ffc0c77421df208a79c2d2c33 (diff) | |
download | strongswan-236eb5851a7d86950b93211aba4a16bd22b73ed4.tar.bz2 strongswan-236eb5851a7d86950b93211aba4a16bd22b73ed4.tar.xz |
added missing method assignments
Diffstat (limited to 'src')
-rw-r--r-- | src/libimcv/imv/imv_msg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libimcv/imv/imv_msg.c b/src/libimcv/imv/imv_msg.c index 911dbfd0c..2c23cadd1 100644 --- a/src/libimcv/imv/imv_msg.c +++ b/src/libimcv/imv/imv_msg.c @@ -323,6 +323,7 @@ imv_msg_t *imv_msg_create(imv_agent_t *agent, imv_state_t *state, .send_assessment = _send_assessment, .receive = _receive, .add_attribute = _add_attribute, + .delete_attributes = _delete_attributes, .create_attribute_enumerator = _create_attribute_enumerator, .destroy = _destroy, }, @@ -392,6 +393,7 @@ imv_msg_t *imv_msg_create_from_long_data(imv_agent_t *agent, imv_state_t *state, .get_dst_id = _get_dst_id, .set_msg_type = _set_msg_type, .send = _send_, + .send_assessment = _send_assessment, .receive = _receive, .add_attribute = _add_attribute, .delete_attributes = _delete_attributes, |