aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_messenger_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_messenger_service.h')
-rw-r--r--src/include/gnunet_messenger_service.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/include/gnunet_messenger_service.h b/src/include/gnunet_messenger_service.h
index 4567a63a4..81bc3aa12 100644
--- a/src/include/gnunet_messenger_service.h
+++ b/src/include/gnunet_messenger_service.h
@@ -666,8 +666,8 @@ GNUNET_MESSENGER_enter_room (struct GNUNET_MESSENGER_Handle *handle, const struc
666 const struct GNUNET_HashCode *key); 666 const struct GNUNET_HashCode *key);
667 667
668/** 668/**
669 * Close a room which was entered, opened or both in various order and variety. Closing a room will destroy all connections 669 * Close a <i>room</i> which was entered, opened or both in various order and variety. Closing a room will destroy all
670 * from your peer to another and the other way around. 670 * connections from your peer to another and the other way around.
671 * 671 *
672 * ( After a member closes a <b>door</b>, all members entered through that specific <b>door</b> have to use another one 672 * ( After a member closes a <b>door</b>, all members entered through that specific <b>door</b> have to use another one
673 * or open the room on their own. ) 673 * or open the room on their own. )
@@ -693,6 +693,15 @@ GNUNET_MESSENGER_find_rooms (const struct GNUNET_MESSENGER_Handle *handle, const
693 GNUNET_MESSENGER_MemberCallback callback, void *cls); 693 GNUNET_MESSENGER_MemberCallback callback, void *cls);
694 694
695/** 695/**
696 * Get the key of a given <i>room</i>.
697 *
698 * @param[in] room Room handle
699 * @return Hash identifying the port or NULL on failure
700 */
701const struct GNUNET_HashCode*
702GNUNET_MESSENGER_room_get_key (const struct GNUNET_MESSENGER_Room *room);
703
704/**
696 * Get the contact of a member in a <i>room</i> which sent a specific message identified with a given <i>hash</i>. 705 * Get the contact of a member in a <i>room</i> which sent a specific message identified with a given <i>hash</i>.
697 * 706 *
698 * Notice that contacts are independent of rooms but will be removed if all rooms containing these contacts get closed. 707 * Notice that contacts are independent of rooms but will be removed if all rooms containing these contacts get closed.