diff options
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. |