diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-12-01 17:16:10 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-12-01 17:16:10 +0000 |
commit | a9428251cd1e6fc579204199ca09cbe55a8f2865 (patch) | |
tree | ea8ad014e885a4ae26a852a8c9f1100a82e58413 /Source/charon/utils/identification.h | |
parent | bae00c63f719c06c74d393c65bef0e5ebe25b24c (diff) | |
download | strongswan-a9428251cd1e6fc579204199ca09cbe55a8f2865.tar.bz2 strongswan-a9428251cd1e6fc579204199ca09cbe55a8f2865.tar.xz |
- new configuration support added to ike_sa and states
Diffstat (limited to 'Source/charon/utils/identification.h')
-rw-r--r-- | Source/charon/utils/identification.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/charon/utils/identification.h b/Source/charon/utils/identification.h index 54e4e02da..0231721a5 100644 --- a/Source/charon/utils/identification.h +++ b/Source/charon/utils/identification.h @@ -76,6 +76,16 @@ struct identification_t { * @return string */ char *(*get_string) (identification_t *this); + + /** + * @brief Check if two identification_t objects are equal. + * + * @param this the identification_t_object + * @param other other identification_t_object + * @return string + */ + bool (*equals) (identification_t *this,identification_t *other); + /** * @brief Destroys a identification_t object. |