aboutsummaryrefslogtreecommitdiff
path: root/src/messenger
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2021-06-27 22:18:12 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2021-06-27 22:18:12 +0200
commit464a3abaef4fd7e11c5c535c2a719a33eccb5ae9 (patch)
treee29a7ab95f894e3a720454fe47e511ead8c1192f /src/messenger
parentfa9e2e2b89313349d653cbf4ce1df8a49280a8c2 (diff)
downloadgnunet-464a3abaef4fd7e11c5c535c2a719a33eccb5ae9.tar.gz
gnunet-464a3abaef4fd7e11c5c535c2a719a33eccb5ae9.zip
-added function to get the key of a room
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'src/messenger')
-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{