#include "messenger_api_contact.h"
Go to the source code of this file.
Functions | |
struct GNUNET_MESSENGER_Contact * | create_contact (const struct GNUNET_CRYPTO_PublicKey *key, size_t unique_id) |
Creates and allocates a new contact with a given public key. More... | |
void | destroy_contact (struct GNUNET_MESSENGER_Contact *contact) |
Destroys a contact and frees its memory fully. More... | |
const char * | get_contact_name (const struct GNUNET_MESSENGER_Contact *contact) |
Returns the current name of a given contact or NULL if no valid name was assigned yet. More... | |
void | set_contact_name (struct GNUNET_MESSENGER_Contact *contact, const char *name) |
Changes the current name of a given contact by copying it from the parameter name. More... | |
const struct GNUNET_CRYPTO_PublicKey * | get_contact_key (const struct GNUNET_MESSENGER_Contact *contact) |
Returns the public key of a given contact. More... | |
void | increase_contact_rc (struct GNUNET_MESSENGER_Contact *contact) |
Increases the reference counter of a given contact which is zero as default. More... | |
enum GNUNET_GenericReturnValue | decrease_contact_rc (struct GNUNET_MESSENGER_Contact *contact) |
Decreases the reference counter if possible (can not underflow!) of a given contact and returns GNUNET_YES if the counter is equal to zero, otherwise GNUNET_NO. More... | |
size_t | get_contact_id (const struct GNUNET_MESSENGER_Contact *contact) |
Returns the locally unique identifier of a given contact. More... | |
void | get_context_from_member (const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context) |
Calculates the context hash of a member in a room and returns it. More... | |
struct GNUNET_MESSENGER_Contact * create_contact | ( | const struct GNUNET_CRYPTO_PublicKey * | key, |
size_t | unique_id | ||
) |
Creates and allocates a new contact with a given public key.
[in] | key | Public key |
[in] | unique_id | Locally unique identifier |
Definition at line 29 of file messenger_api_contact.c.
References GNUNET_assert, GNUNET_memcpy, GNUNET_new, GNUNET_MESSENGER_Contact::id, key, GNUNET_MESSENGER_Contact::name, GNUNET_MESSENGER_Contact::public_key, and GNUNET_MESSENGER_Contact::rc.
Referenced by get_store_contact().
void destroy_contact | ( | struct GNUNET_MESSENGER_Contact * | contact | ) |
Destroys a contact and frees its memory fully.
[in,out] | contact | Contact |
Definition at line 49 of file messenger_api_contact.c.
References GNUNET_assert, GNUNET_free, and GNUNET_MESSENGER_Contact::name.
Referenced by get_store_contact(), iterate_destroy_contacts(), and remove_store_contact().
const char * get_contact_name | ( | const struct GNUNET_MESSENGER_Contact * | contact | ) |
Returns the current name of a given contact or NULL if no valid name was assigned yet.
[in] | contact | Contact |
Definition at line 61 of file messenger_api_contact.c.
References GNUNET_assert, and GNUNET_MESSENGER_Contact::name.
Referenced by GNUNET_MESSENGER_contact_get_name().
void set_contact_name | ( | struct GNUNET_MESSENGER_Contact * | contact, |
const char * | name | ||
) |
Changes the current name of a given contact by copying it from the parameter name.
[in,out] | contact | Contact |
[in] | name | Name |
Definition at line 70 of file messenger_api_contact.c.
References GNUNET_assert, GNUNET_free, GNUNET_strdup, name, and GNUNET_MESSENGER_Contact::name.
Referenced by handle_name_message().
const struct GNUNET_CRYPTO_PublicKey * get_contact_key | ( | const struct GNUNET_MESSENGER_Contact * | contact | ) |
Returns the public key of a given contact.
[in] | contact | Contact |
Definition at line 83 of file messenger_api_contact.c.
References GNUNET_assert, and GNUNET_MESSENGER_Contact::public_key.
Referenced by get_store_contact(), GNUNET_MESSENGER_contact_get_key(), GNUNET_MESSENGER_send_message(), handle_id_message(), remove_store_contact(), and update_store_contact().
void increase_contact_rc | ( | struct GNUNET_MESSENGER_Contact * | contact | ) |
Increases the reference counter of a given contact which is zero as default.
[in,out] | contact | Contact |
Definition at line 92 of file messenger_api_contact.c.
References GNUNET_assert, and GNUNET_MESSENGER_Contact::rc.
Referenced by create_member_session(), handle_join_message(), reset_member_session(), and switch_member_session().
enum GNUNET_GenericReturnValue decrease_contact_rc | ( | struct GNUNET_MESSENGER_Contact * | contact | ) |
Decreases the reference counter if possible (can not underflow!) of a given contact and returns GNUNET_YES if the counter is equal to zero, otherwise GNUNET_NO.
[in,out] | contact | Contact |
Definition at line 101 of file messenger_api_contact.c.
References GNUNET_assert, GNUNET_NO, GNUNET_YES, and GNUNET_MESSENGER_Contact::rc.
Referenced by check_member_session_completion(), destroy_member_session(), and handle_leave_message().
size_t get_contact_id | ( | const struct GNUNET_MESSENGER_Contact * | contact | ) |
Returns the locally unique identifier of a given contact.
[in] | contact | contact Contact |
Definition at line 113 of file messenger_api_contact.c.
References GNUNET_assert, and GNUNET_MESSENGER_Contact::id.
Referenced by GNUNET_MESSENGER_contact_get_id().
void get_context_from_member | ( | const struct GNUNET_HashCode * | key, |
const struct GNUNET_ShortHashCode * | id, | ||
struct GNUNET_HashCode * | context | ||
) |
Calculates the context hash of a member in a room and returns it.
[in] | key | Key of room |
[in] | id | Member id |
[out] | context | Member context |
Definition at line 122 of file messenger_api_contact.c.
References context, GNUNET_assert, GNUNET_CRYPTO_hash(), GNUNET_CRYPTO_hash_xor(), and key.
Referenced by create_member_session(), get_handle_contact(), handle_id_message(), handle_join_message(), handle_key_message(), and switch_member_session().