aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/messenger_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/messenger/messenger_api.c')
-rw-r--r--src/messenger/messenger_api.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/messenger/messenger_api.c b/src/messenger/messenger_api.c
index 1eedbd31b..f7c73f769 100644
--- a/src/messenger/messenger_api.c
+++ b/src/messenger/messenger_api.c
@@ -618,6 +618,15 @@ GNUNET_MESSENGER_find_rooms (const struct GNUNET_MESSENGER_Handle *handle, const
618 return GNUNET_CONTAINER_multihashmap_iterate(handle->rooms, iterate_find_room, &find); 618 return GNUNET_CONTAINER_multihashmap_iterate(handle->rooms, iterate_find_room, &find);
619} 619}
620 620
621const struct GNUNET_HashCode*
622GNUNET_MESSENGER_room_get_key (const struct GNUNET_MESSENGER_Room *room)
623{
624 if (!room)
625 return NULL;
626
627 return &(room->key);
628}
629
621const struct GNUNET_MESSENGER_Contact* 630const struct GNUNET_MESSENGER_Contact*
622GNUNET_MESSENGER_get_sender (const struct GNUNET_MESSENGER_Room *room, const struct GNUNET_HashCode *hash) 631GNUNET_MESSENGER_get_sender (const struct GNUNET_MESSENGER_Room *room, const struct GNUNET_HashCode *hash)
623{ 632{