old mode 100644
new mode 100755
| | |
| | | |
| | | /** |
| | | * Acquire a reference to the chat room. |
| | | * @param[in] cr The chat room. |
| | | * @return The same chat room. |
| | | * @param chat_room The #LinphoneChatRoom object. @notnil |
| | | * @return The same #LinphoneChatRoom object. @notnil |
| | | **/ |
| | | LINPHONE_PUBLIC LinphoneChatRoom *linphone_chat_room_ref(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneChatRoom *linphone_chat_room_ref(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Release reference to the chat room. |
| | | * @param[in] cr The chat room. |
| | | * @param chat_room The #LinphoneChatRoom object. @notnil |
| | | **/ |
| | | LINPHONE_PUBLIC void linphone_chat_room_unref(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_unref(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Retrieve the user pointer associated with the chat room. |
| | | * @param[in] cr The chat room. |
| | | * @return The user pointer associated with the chat room. |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @return The user pointer associated with the chat room. @maybenil |
| | | **/ |
| | | LINPHONE_PUBLIC void *linphone_chat_room_get_user_data(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC void *linphone_chat_room_get_user_data(const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Assign a user pointer to the chat room. |
| | | * @param[in] cr The chat room. |
| | | * @param[in] ud The user pointer to associate with the chat room. |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @param user_data The user pointer to associate with the chat room. @maybenil |
| | | **/ |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_user_data(LinphoneChatRoom *cr, void *ud); |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_user_data(LinphoneChatRoom *chat_room, void *user_data); |
| | | |
| | | /** |
| | | * Creates an empty message attached to a dedicated chat room. |
| | | * @param cr the chat room. |
| | | * @return a new #LinphoneChatMessage |
| | | * Creates an empty message attached to the given chat room. |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @return a new #LinphoneChatMessage @notnil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatMessage *linphone_chat_room_create_empty_message (LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneChatMessage *linphone_chat_room_create_empty_message (LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Creates a message attached to a dedicated chat room. |
| | | * @param cr the chat room. |
| | | * @param message text message, NULL if absent. |
| | | * @return a new #LinphoneChatMessage |
| | | * Creates a message attached to the given chat room with a plain text content filled with the given message. Introduced in 01/07/2020 |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @param message text message in UTF8, NULL if absent. @maybenil |
| | | * @return a new #LinphoneChatMessage @notnil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatMessage* linphone_chat_room_create_message(LinphoneChatRoom *cr,const char* message); |
| | | |
| | | /** |
| | | * Creates a message attached to a dedicated chat room. |
| | | * @param cr the chat room. |
| | | * @param message text message, NULL if absent. |
| | | * @param external_body_url the URL given in external body or NULL. |
| | | * @param state the LinphoneChatMessage.State of the message. |
| | | * @param time the time_t at which the message has been received/sent. |
| | | * @param is_read TRUE if the message should be flagged as read, FALSE otherwise. |
| | | * @param is_incoming TRUE if the message has been received, FALSE otherwise. |
| | | * @return a new #LinphoneChatMessage |
| | | * @deprecated Use #linphone_chat_room_create_message() instead. Deprecated since 2017-11-14. |
| | | * @donotwrap |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatMessage* linphone_chat_room_create_message_2(LinphoneChatRoom *cr, const char* message, const char* external_body_url, LinphoneChatMessageState state, time_t time, bool_t is_read, bool_t is_incoming); |
| | | LINPHONE_PUBLIC LinphoneChatMessage* linphone_chat_room_create_message_from_utf8(LinphoneChatRoom *chat_room,const char* message); |
| | | |
| | | /** |
| | | * Creates a message attached to a dedicated chat room with a particular content. |
| | | * Use #linphone_chat_room_send_message to initiate the transfer |
| | | * @param cr the chat room. |
| | | * @param initial_content #LinphoneContent initial content. #LinphoneCoreVTable.file_transfer_send is invoked later to notify file transfer progress and collect next chunk of the message if LinphoneContent.data is NULL. |
| | | * @return a new #LinphoneChatMessage |
| | | * Creates a message attached to the given chat room with a particular content. |
| | | * Use linphone_chat_room_send_message() to initiate the transfer |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @param initial_content #LinphoneContent initial content. @notnil |
| | | * @return a new #LinphoneChatMessage @notnil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatMessage* linphone_chat_room_create_file_transfer_message(LinphoneChatRoom *cr, LinphoneContent* initial_content); |
| | | LINPHONE_PUBLIC LinphoneChatMessage* linphone_chat_room_create_file_transfer_message(LinphoneChatRoom *chat_room, LinphoneContent* initial_content); |
| | | |
| | | /** |
| | | * Creates a forward message attached to a dedicated chat room with a particular message. |
| | | * @param cr the chat room. |
| | | * @param msg #LinphoneChatMessage message to be forwarded. |
| | | * @return a new #LinphoneChatMessage |
| | | * Creates a forward message attached to the given chat room with a particular message. |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @param message #LinphoneChatMessage message to be forwarded. @notnil |
| | | * @return a new #LinphoneChatMessage @notnil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatMessage *linphone_chat_room_create_forward_message (LinphoneChatRoom *cr, LinphoneChatMessage *msg); |
| | | LINPHONE_PUBLIC LinphoneChatMessage *linphone_chat_room_create_forward_message (LinphoneChatRoom *chat_room, LinphoneChatMessage *message); |
| | | |
| | | /** |
| | | * get peer address \link linphone_core_get_chat_room() associated to \endlink this #LinphoneChatRoom |
| | | * @param cr #LinphoneChatRoom object |
| | | * @return #LinphoneAddress peer address |
| | | * Get the peer address associated to this chat room. |
| | | * @param chat_room #LinphoneChatRoom object. @notnil |
| | | * @return The peer address. @notnil |
| | | */ |
| | | LINPHONE_PUBLIC const LinphoneAddress* linphone_chat_room_get_peer_address(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC const LinphoneAddress* linphone_chat_room_get_peer_address(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * get local address \link linphone_core_get_chat_room() associated to \endlink this #LinphoneChatRoom |
| | | * @param cr #LinphoneChatRoom object |
| | | * @return #LinphoneAddress local address |
| | | * Get the local address associated to this chat room. |
| | | * @param chat_room #LinphoneChatRoom object. @notnil |
| | | * @return The local address. @notnil |
| | | */ |
| | | LINPHONE_PUBLIC const LinphoneAddress* linphone_chat_room_get_local_address(LinphoneChatRoom *cr); |
| | | |
| | | LINPHONE_PUBLIC const LinphoneAddress* linphone_chat_room_get_local_address(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Send a message to peer member of this chat room. |
| | | * @deprecated Use linphone_chat_message_send() instead. |
| | | * @param cr #LinphoneChatRoom object |
| | | * @param msg message to be sent |
| | | * @donotwrap |
| | | * Used to receive a chat message when using async mechanism with IM enchat_roomyption engine |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @param message #LinphoneChatMessage object @notnil |
| | | */ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED void linphone_chat_room_send_message(LinphoneChatRoom *cr, const char *msg); |
| | | |
| | | /** |
| | | * Send a message to peer member of this chat room. |
| | | * @param[in] cr #LinphoneChatRoom object |
| | | * @param[in] msg #LinphoneChatMessage object |
| | | * The state of the message sending will be notified via the callbacks defined in the #LinphoneChatMessageCbs object that can be obtained |
| | | * by calling linphone_chat_message_get_callbacks(). |
| | | * The #LinphoneChatMessage reference is transfered to the function and thus doesn't need to be unref'd by the application. |
| | | * @deprecated Use linphone_chat_message_send() instead. |
| | | * @donotwrap |
| | | */ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED void linphone_chat_room_send_chat_message(LinphoneChatRoom *cr, LinphoneChatMessage *msg); |
| | | |
| | | /** |
| | | * Used to receive a chat message when using async mechanism with IM encryption engine |
| | | * @param[in] cr #LinphoneChatRoom object |
| | | * @param[in] msg #LinphoneChatMessage object |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_receive_chat_message (LinphoneChatRoom *cr, LinphoneChatMessage *msg); |
| | | LINPHONE_PUBLIC void linphone_chat_room_receive_chat_message (LinphoneChatRoom *chat_room, LinphoneChatMessage *message); |
| | | |
| | | /** |
| | | * Mark all messages of the conversation as read |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation. @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_mark_as_read(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_mark_as_read(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Enable or disable the ephemeral message feature in the chat room. Works only for conference based chat room. |
| | | * An ephemeral message will automatically disappear from the recipient's schat_roomeen after the message has been viewed. |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @param enable TRUE if the ephemeral message feature is enabled, FALSE otherwise. |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_enable_ephemeral (LinphoneChatRoom *chat_room, bool_t enable); |
| | | |
| | | /** |
| | | * Returns whether or not the ephemeral message feature is enabled in the chat room. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation @notnil |
| | | * @return TRUE if ephemeral is enabled, FALSE otherwise. |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_ephemeral_enabled (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Set lifetime (in seconds) for all new ephemral messages in the chat room. |
| | | * After the message is read, it will be deleted after "time" seconds. |
| | | * @see linphone_chat_room_ephemeral_enabled() |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @param time The ephemral lifetime, default 24h, 86400s |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_ephemeral_lifetime (LinphoneChatRoom *chat_room, long time); |
| | | |
| | | /** |
| | | * Get lifetime (in seconds) for all new ephemeral messages in the chat room. |
| | | * After the message is read, it will be deleted after "time" seconds. |
| | | * @see linphone_chat_room_ephemeral_enabled() |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @return the ephemeral lifetime (in secoonds) |
| | | */ |
| | | LINPHONE_PUBLIC long linphone_chat_room_get_ephemeral_lifetime (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Uses linphone spec to check if all participants support ephemeral messages. |
| | | * It doesn't prevent to send ephemeral messages in the room but those who don't support it |
| | | * won't delete messages after lifetime has expired. |
| | | * @see linphone_chat_room_ephemeral_enabled() |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @return TRUE if all participants in the chat room support ephemeral messages, FALSE otherwise |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_ephemeral_supported_by_all_participants (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Delete a message from the chat room history. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation. |
| | | * @param[in] msg The #LinphoneChatMessage object to remove. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation. @notnil |
| | | * @param message The #LinphoneChatMessage object to remove. @notnil |
| | | */ |
| | | |
| | | LINPHONE_PUBLIC void linphone_chat_room_delete_message(LinphoneChatRoom *cr, LinphoneChatMessage *msg); |
| | | LINPHONE_PUBLIC void linphone_chat_room_delete_message(LinphoneChatRoom *chat_room, LinphoneChatMessage *message); |
| | | |
| | | /** |
| | | * Delete all messages from the history |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation. @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_delete_history(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_delete_history(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Gets the number of messages in a chat room. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which size has to be computed |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which size has to be computed @notnil |
| | | * @return the number of messages. |
| | | */ |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_history_size(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_history_size(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Returns whether or not a #LinphoneChatRoom has at least one #LinphoneChatMessage or not. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation |
| | | * @return true if there are no #LinphoneChatMessage, false otherwise. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation @notnil |
| | | * @return TRUE if there are no #LinphoneChatMessage, FALSE otherwise. |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_is_empty (LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_is_empty (LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Gets nb_message most recent messages from cr chat room, sorted from oldest to most recent. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which messages should be retrieved |
| | | * @param[in] nb_message Number of message to retrieve. 0 means everything. |
| | | * @return \bctbx_list{LinphoneChatMessage} \onTheFlyList |
| | | * Gets nb_message most recent messages from chat_room chat room, sorted from oldest to most recent. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which messages should be retrieved @notnil |
| | | * @param nb_message Number of message to retrieve. 0 means everything. |
| | | * @return A list of chat messages. \bctbx_list{LinphoneChatMessage} @tobefreed |
| | | */ |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history (LinphoneChatRoom *cr, int nb_message); |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history (LinphoneChatRoom *chat_room, int nb_message); |
| | | |
| | | /** |
| | | * Gets the partial list of messages in the given range, sorted from oldest to most recent. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which messages should be retrieved |
| | | * @param[in] begin The first message of the range to be retrieved. History most recent message has index 0. |
| | | * @param[in] end The last message of the range to be retrieved. History oldest message has index of history size - 1 (use #linphone_chat_room_get_history_size to retrieve history size) |
| | | * @return \bctbx_list{LinphoneChatMessage} \onTheFlyList |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which messages should be retrieved @notnil |
| | | * @param begin The first message of the range to be retrieved. History most recent message has index 0. |
| | | * @param end The last message of the range to be retrieved. History oldest message has index of history size - 1 (use #linphone_chat_room_get_history_size() to retrieve history size) |
| | | * @return A list of chat messages. \bctbx_list{LinphoneChatMessage} @tobefreed |
| | | */ |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_range (LinphoneChatRoom *cr, int begin, int end); |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_range (LinphoneChatRoom *chat_room, int begin, int end); |
| | | |
| | | /** |
| | | * Gets nb_events most recent chat message events from cr chat room, sorted from oldest to most recent. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved |
| | | * @param[in] nb_events Number of events to retrieve. 0 means everything. |
| | | * @return \bctbx_list{LinphoneEventLog} \onTheFlyList |
| | | * Gets nb_events most recent chat message events from chat_room chat room, sorted from oldest to most recent. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved @notnil |
| | | * @param nb_events Number of events to retrieve. 0 means everything. |
| | | * @return A list \bctbx_list{LinphoneEventLog} @tobefreed |
| | | */ |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_message_events (LinphoneChatRoom *cr, int nb_events); |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_message_events (LinphoneChatRoom *chat_room, int nb_events); |
| | | |
| | | /** |
| | | * Gets the partial list of chat message events in the given range, sorted from oldest to most recent. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved |
| | | * @param[in] begin The first event of the range to be retrieved. History most recent event has index 0. |
| | | * @param[in] end The last event of the range to be retrieved. History oldest event has index of history size - 1 |
| | | * @return \bctbx_list{LinphoneEventLog} \onTheFlyList |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved @notnil |
| | | * @param begin The first event of the range to be retrieved. History most recent event has index 0. |
| | | * @param end The last event of the range to be retrieved. History oldest event has index of history size - 1 |
| | | * @return The list of chat message events. \bctbx_list{LinphoneEventLog} @tobefreed |
| | | */ |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_range_message_events (LinphoneChatRoom *cr, int begin, int end); |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_range_message_events (LinphoneChatRoom *chat_room, int begin, int end); |
| | | |
| | | /** |
| | | * Gets nb_events most recent events from cr chat room, sorted from oldest to most recent. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved |
| | | * @param[in] nb_events Number of events to retrieve. 0 means everything. |
| | | * @return \bctbx_list{LinphoneEventLog} \onTheFlyList |
| | | * Gets nb_events most recent events from chat_room chat room, sorted from oldest to most recent. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved @notnil |
| | | * @param nb_events Number of events to retrieve. 0 means everything. |
| | | * @return The list of the most recent events. \bctbx_list{LinphoneEventLog} @tobefreed |
| | | */ |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_events (LinphoneChatRoom *cr, int nb_events); |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_events (LinphoneChatRoom *chat_room, int nb_events); |
| | | |
| | | /** |
| | | * Gets the partial list of events in the given range, sorted from oldest to most recent. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved |
| | | * @param[in] begin The first event of the range to be retrieved. History most recent event has index 0. |
| | | * @param[in] end The last event of the range to be retrieved. History oldest event has index of history size - 1 |
| | | * @return \bctbx_list{LinphoneEventLog} \onTheFlyList |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which events should be retrieved @notnil |
| | | * @param begin The first event of the range to be retrieved. History most recent event has index 0. |
| | | * @param end The last event of the range to be retrieved. History oldest event has index of history size - 1 |
| | | * @return The list of the found events. \bctbx_list{LinphoneEventLog} @tobefreed |
| | | */ |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_range_events (LinphoneChatRoom *cr, int begin, int end); |
| | | LINPHONE_PUBLIC bctbx_list_t *linphone_chat_room_get_history_range_events (LinphoneChatRoom *chat_room, int begin, int end); |
| | | |
| | | /** |
| | | * Gets the number of events in a chat room. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which size has to be computed |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which size has to be computed @notnil |
| | | * @return the number of events. |
| | | */ |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_history_events_size(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_history_events_size(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Gets the last chat message sent or received in this chat room |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which last message should be retrieved |
| | | * @return the latest #LinphoneChatMessage |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which last message should be retrieved @notnil |
| | | * @return the latest #LinphoneChatMessage or NULL if no message. @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatMessage *linphone_chat_room_get_last_message_in_history(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneChatMessage *linphone_chat_room_get_last_message_in_history(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Gets the chat message sent or received in this chat room that matches the message_id |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which the message should be retrieved |
| | | * @param[in] message_id The id of the message to find |
| | | * @return the #LinphoneChatMessage |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which the message should be retrieved @notnil |
| | | * @param message_id The id of the message to find @notnil |
| | | * @return the #LinphoneChatMessage if found or NULL. @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatMessage * linphone_chat_room_find_message(LinphoneChatRoom *cr, const char *message_id); |
| | | LINPHONE_PUBLIC LinphoneChatMessage * linphone_chat_room_find_message(LinphoneChatRoom *chat_room, const char *message_id); |
| | | |
| | | /** |
| | | * Notifies the destination of the chat message being composed that the user is typing a new message. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation for which a new message is being typed. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation for which a new message is being typed. @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_compose(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_compose(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Tells whether the remote is currently composing a message. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation. @notnil |
| | | * @return TRUE if the remote is currently composing a message, FALSE otherwise. |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_is_remote_composing(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_is_remote_composing(const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Gets the number of unread messages in the chatroom. |
| | | * @param[in] cr The #LinphoneChatRoom object corresponding to the conversation. |
| | | * @param chat_room The #LinphoneChatRoom object corresponding to the conversation. @notnil |
| | | * @return the number of unread messages. |
| | | */ |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_unread_messages_count(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_unread_messages_count(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Returns back pointer to #LinphoneCore object. |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @return the #LinphoneCore object this chat room is attached to. @notnil |
| | | **/ |
| | | LINPHONE_PUBLIC LinphoneCore* linphone_chat_room_get_core(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneCore* linphone_chat_room_get_core(const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * When realtime text is enabled #linphone_call_params_realtime_text_enabled, #LinphoneCoreIsComposingReceivedCb is call everytime a char is received from peer. |
| | | * When realtime text is enabled linphone_call_params_realtime_text_enabled(), #LinphoneCoreIsComposingReceivedCb is call everytime a char is received from peer. |
| | | * At the end of remote typing a regular #LinphoneChatMessage is received with committed data from #LinphoneCoreMessageReceivedCb. |
| | | * @param[in] cr #LinphoneChatRoom object |
| | | * @returns RFC 4103/T.140 char |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @return RFC 4103/T.140 char |
| | | */ |
| | | LINPHONE_PUBLIC uint32_t linphone_chat_room_get_char(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC uint32_t linphone_chat_room_get_char(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Returns true if lime is available for given peer |
| | | * |
| | | * @return true if zrtp secrets have already been shared and ready to use |
| | | * Returns wether lime is available for given peer or not. * |
| | | * @return TRUE if zrtp secrets have already been shared and ready to use, FALSE otherwise. @notnil |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_lime_available(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_lime_available(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * get Curent Call associated to this chatroom if any |
| | | * To commit a message, use #linphone_chat_room_send_message |
| | | * @param[in] room #LinphoneChatRomm |
| | | * @returns #LinphoneCall or NULL. |
| | | * Gets the current call associated to this chatroom if any |
| | | * To commit a message, use linphone_chat_room_send_message() |
| | | * @param chat_room the #LinphoneChatRomm object @notnil |
| | | * @return #LinphoneCall or NULL. @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneCall *linphone_chat_room_get_call(const LinphoneChatRoom *room); |
| | | LINPHONE_PUBLIC LinphoneCall *linphone_chat_room_get_call(const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Add a listener in order to be notified of #LinphoneChatRoom events. Once an event is received, registred #LinphoneChatRoomCbs are |
| | | * invoked sequencially. |
| | | * @param[in] call #LinphoneChatRoom object to monitor. |
| | | * @param[in] cbs A #LinphoneChatRoomCbs object holding the callbacks you need. A reference is taken by the #LinphoneChatRoom until you invoke linphone_call_remove_callbacks(). |
| | | * @param chat_room #LinphoneChatRoom object to monitor. @notnil |
| | | * @param cbs A #LinphoneChatRoomCbs object holding the callbacks you need. A reference is taken by the #LinphoneChatRoom until you invoke linphone_call_remove_callbacks(). @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_add_callbacks(LinphoneChatRoom *cr, LinphoneChatRoomCbs *cbs); |
| | | LINPHONE_PUBLIC void linphone_chat_room_add_callbacks(LinphoneChatRoom *chat_room, LinphoneChatRoomCbs *cbs); |
| | | |
| | | /** |
| | | * Remove a listener from a LinphoneChatRoom |
| | | * @param[in] call LinphoneChatRoom object |
| | | * @param[in] cbs LinphoneChatRoomCbs object to remove. |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @param cbs LinphoneChatRoomCbs object to remove. @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_remove_callbacks(LinphoneChatRoom *cr, LinphoneChatRoomCbs *cbs); |
| | | LINPHONE_PUBLIC void linphone_chat_room_remove_callbacks(LinphoneChatRoom *chat_room, LinphoneChatRoomCbs *cbs); |
| | | |
| | | /** |
| | | * Gets the current LinphoneChatRoomCbs. |
| | | * This is meant only to be called from a callback to be able to get the user_data associated with the LinphoneChatRoomCbs that is calling the callback. |
| | | * @param[in] call LinphoneChatRoom object |
| | | * @return The LinphoneChatRoomCbs that has called the last callback |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @return The LinphoneChatRoomCbs that has called the last callback @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatRoomCbs *linphone_chat_room_get_current_callbacks(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneChatRoomCbs *linphone_chat_room_get_current_callbacks(const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Get the state of the chat room. |
| | | * @param[in] cr #LinphoneChatRoom object |
| | | * @return The state of the chat room |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @return The current #LinphoneChatRoomState of the chat room |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatRoomState linphone_chat_room_get_state (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneChatRoomState linphone_chat_room_get_state (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Return whether or not the chat room has been left. |
| | | * @param[in] cr #LinphoneChatRoom object |
| | | * @return whether or not the chat room has been left |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @return TRUE if the chat room has been left, FALSE otherwise. |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_has_been_left (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_has_been_left (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Return the last updated time for the chat room |
| | | * @param[in] cr LinphoneChatRoom object |
| | | * @param chat_room #LinphoneChatRoom object @notnil |
| | | * @return the last updated time |
| | | */ |
| | | LINPHONE_PUBLIC time_t linphone_chat_room_get_last_update_time(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC time_t linphone_chat_room_get_last_update_time(const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Add a participant to a chat room. This may fail if this type of chat room does not handle participants. |
| | | * Use linphone_chat_room_can_handle_participants() to know if this chat room handles participants. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] addr The address of the participant to add to the chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param addr The address of the participant to add to the chat room @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_add_participant (LinphoneChatRoom *cr, const LinphoneAddress *addr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_add_participant (LinphoneChatRoom *chat_room, const LinphoneAddress *addr); |
| | | |
| | | /** |
| | | * Add several participants to a chat room at once. This may fail if this type of chat room does not handle participants. |
| | | * Use linphone_chat_room_can_handle_participants() to know if this chat room handles participants. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] addresses \bctbx_list{LinphoneAddress} |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param addresses The participants to add. \bctbx_list{LinphoneAddress} @notnil |
| | | * @return TRUE if everything is OK, FALSE otherwise |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_add_participants (LinphoneChatRoom *cr, const bctbx_list_t *addresses); |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_add_participants (LinphoneChatRoom *chat_room, const bctbx_list_t *addresses); |
| | | |
| | | /** |
| | | * Tells whether a chat room is able to handle participants. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return A boolean value telling whether the chat room can handle participants or not |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return TRUE if the chat room can handle participants, FALSE otherwise |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_can_handle_participants (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_can_handle_participants (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Find a participant of a chat room from its address. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] addr The address to search in the list of participants of the chat room |
| | | * @return The participant if found, NULL otherwise. |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param address The #LinphoneAddress to search in the list of participants of the chat room @notnil |
| | | * @return The participant if found, NULL otherwise. @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneParticipant *linphone_chat_room_find_participant (const LinphoneChatRoom *cr, const LinphoneAddress *addr); |
| | | LINPHONE_PUBLIC LinphoneParticipant *linphone_chat_room_find_participant (const LinphoneChatRoom *chat_room, const LinphoneAddress *address); |
| | | |
| | | /** |
| | | * Get the capabilities of a chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return The capabilities of the chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return The capabilities of the chat room (as a #LinphoneChatRoomCapabilitiesMask) |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatRoomCapabilitiesMask linphone_chat_room_get_capabilities (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneChatRoomCapabilitiesMask linphone_chat_room_get_capabilities (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Check if a chat room has given capabilities. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] mask A Capabilities mask |
| | | * @return True if the mask matches, false otherwise |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param mask a #LinphoneChatRoomCapabilitiesMask mask |
| | | * @return TRUE if the mask matches, FALSE otherwise |
| | | */ |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_has_capability(const LinphoneChatRoom *cr, int mask); |
| | | LINPHONE_PUBLIC bool_t linphone_chat_room_has_capability(const LinphoneChatRoom *chat_room, int mask); |
| | | |
| | | /** |
| | | * Get the conference address of the chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return The conference address of the chat room or NULL if this type of chat room is not conference based |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return The conference address of the chat room or NULL if this type of chat room is not conference based. @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC const LinphoneAddress *linphone_chat_room_get_conference_address (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC const LinphoneAddress *linphone_chat_room_get_conference_address (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Get the participant representing myself in the chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return The participant representing myself in the conference. |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return The participant representing myself in the conference or NULL if me is not set. @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneParticipant *linphone_chat_room_get_me (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneParticipant *linphone_chat_room_get_me (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Get the number of participants in the chat room (that is without ourselves). |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return The number of participants in the chat room |
| | | */ |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_nb_participants (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC int linphone_chat_room_get_nb_participants (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Get the list of participants of a chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return \bctbx_list{LinphoneParticipant} |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return A \bctbx_list{LinphoneParticipant} of the participants |
| | | */ |
| | | LINPHONE_PUBLIC bctbx_list_t * linphone_chat_room_get_participants (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC bctbx_list_t * linphone_chat_room_get_participants (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Get the subject of a chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return The subject of the chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return The subject of the chat room. @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC const char * linphone_chat_room_get_subject (const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC const char * linphone_chat_room_get_subject (const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Get the security level of a chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return The security level of the chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return The current #LinphoneChatRoomSecurityLevel of the chat room |
| | | */ |
| | | LINPHONE_PUBLIC LinphoneChatRoomSecurityLevel linphone_chat_room_get_security_level (LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC LinphoneChatRoomSecurityLevel linphone_chat_room_get_security_level (LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Leave a chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_leave (LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_leave (LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Remove a participant of a chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] participant The participant to remove from the chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param participant The participant to remove from the chat room @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_remove_participant (LinphoneChatRoom *cr, LinphoneParticipant *participant); |
| | | LINPHONE_PUBLIC void linphone_chat_room_remove_participant (LinphoneChatRoom *chat_room, LinphoneParticipant *participant); |
| | | |
| | | /** |
| | | * Remove several participants of a chat room at once. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] participants \bctbx_list{LinphoneParticipant} |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param participants The participants to remove. \bctbx_list{LinphoneParticipant} @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_remove_participants (LinphoneChatRoom *cr, const bctbx_list_t *participants); |
| | | LINPHONE_PUBLIC void linphone_chat_room_remove_participants (LinphoneChatRoom *chat_room, const bctbx_list_t *participants); |
| | | |
| | | /** |
| | | * Change the admin status of a participant of a chat room (you need to be an admin yourself to do this). |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] participant The Participant for which to change the admin status |
| | | * @param[in] isAdmin A boolean value telling whether the participant should now be an admin or not |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param participant The Participant for which to change the admin status @notnil |
| | | * @param is_admin A boolean value telling whether the participant should now be an admin or not |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_participant_admin_status (LinphoneChatRoom *cr, LinphoneParticipant *participant, bool_t isAdmin); |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_participant_admin_status (LinphoneChatRoom *chat_room, LinphoneParticipant *participant, bool_t is_admin); |
| | | |
| | | /** |
| | | * Set the subject of a chat room. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] subject The new subject to set for the chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param subject The new subject to set for the chat room @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_subject (LinphoneChatRoom *cr, const char *subject); |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_subject (LinphoneChatRoom *chat_room, const char *subject); |
| | | |
| | | /** |
| | | * Gets the list of participants that are currently composing |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @return \bctbx_list{LinphoneAddress} list of addresses that are in the is_composing state |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @return List of addresses that are in the is_composing state. \bctbx_list{LinphoneAddress} |
| | | */ |
| | | LINPHONE_PUBLIC const bctbx_list_t * linphone_chat_room_get_composing_addresses(LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC const bctbx_list_t * linphone_chat_room_get_composing_addresses(LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Set the conference address of a group chat room. This function needs to be called from the |
| | | * #LinphoneChatRoomCbsConferenceAddressGenerationCb callback and only there. |
| | | * This function is meaningful only for server implementation of chatroom, and shall not by used by client applications. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] confAddr The conference address to be used by the group chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param conference_address The conference #LinphoneAddress to be used by the group chat room @maybenil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_conference_address (LinphoneChatRoom *cr, const LinphoneAddress *confAddr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_conference_address (LinphoneChatRoom *chat_room, const LinphoneAddress *conference_address); |
| | | |
| | | /** |
| | | * Set the list of participant devices in the form of SIP URIs with GRUUs for a given participant. |
| | | * This function is meaningful only for server implementation of chatroom, and shall not by used by client applications. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] partAddr The participant address |
| | | * @param[in] deviceIdentities \bctbx_list{LinphoneParticipantDeviceIdentity} list of the participant devices to be used by the group chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param participant_address The participant address @notnil |
| | | * @param device_identities List of the participant devices to be used by the group chat room \bctbx_list{LinphoneParticipantDeviceIdentity} @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_participant_devices(LinphoneChatRoom *cr, const LinphoneAddress *partAddr, const bctbx_list_t *deviceIdentities); |
| | | LINPHONE_PUBLIC void linphone_chat_room_set_participant_devices(LinphoneChatRoom *chat_room, const LinphoneAddress *participant_address, const bctbx_list_t *device_identities); |
| | | |
| | | |
| | | /** |
| | | * Notify the chatroom that a participant device has just registered. |
| | | * This function is meaningful only for server implementation of chatroom, and shall not by used by client applications. |
| | | * @param[in] cr A #LinphoneChatRoom object |
| | | * @param[in] partDevice list of the participant devices to be used by the group chat room |
| | | * @param chat_room A #LinphoneChatRoom object @notnil |
| | | * @param participant_device list of the participant devices to be used by the group chat room @notnil |
| | | */ |
| | | LINPHONE_PUBLIC void linphone_chat_room_notify_participant_device_registration(LinphoneChatRoom *cr, const LinphoneAddress *participant_device); |
| | | |
| | | /** |
| | | * Returns back pointer to #LinphoneCore object. |
| | | * @deprecated use linphone_chat_room_get_core() |
| | | * @donotwrap |
| | | **/ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED LinphoneCore* linphone_chat_room_get_lc(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC void linphone_chat_room_notify_participant_device_registration(LinphoneChatRoom *chat_room, const LinphoneAddress *participant_device); |
| | | |
| | | /** |
| | | * Returns current parameters associated with the chat room. |
| | | * This is typically the parameters passed at chat room creation to linphone_core_create_chat_room() or some default |
| | | * parameters if no #LinphoneChatRoomParams was explicitely passed during chat room creation. |
| | | * @param cr the #LinphoneChatRoom object |
| | | * @return the chat room current parameters. |
| | | * This is typically the parameters passed at chat room chat_roomeation to linphone_core_chat_roomeate_chat_room() or some default |
| | | * parameters if no #LinphoneChatRoomParams was explicitely passed during chat room chat_roomeation. |
| | | * @param chat_room the #LinphoneChatRoom object @notnil |
| | | * @return the current #LinphoneChatRoomParams parameters. @notnil |
| | | **/ |
| | | LINPHONE_PUBLIC const LinphoneChatRoomParams *linphone_chat_room_get_current_params(const LinphoneChatRoom *cr); |
| | | LINPHONE_PUBLIC const LinphoneChatRoomParams *linphone_chat_room_get_current_params(const LinphoneChatRoom *chat_room); |
| | | |
| | | /************ */ |
| | | /* DEPRECATED */ |
| | | /* ********** */ |
| | | |
| | | /** |
| | | * Creates a message attached to the given chat room. |
| | | * @param chat_room the #LinphoneChatRoom object. |
| | | * @param message text message, NULL if absent. |
| | | * @param external_body_url the URL given in external body or NULL. |
| | | * @param state the LinphoneChatMessage. State of the message. |
| | | * @param time the time_t at which the message has been received/sent. |
| | | * @param is_read TRUE if the message should be flagged as read, FALSE otherwise. |
| | | * @param is_incoming TRUE if the message has been received, FALSE otherwise. |
| | | * @return a new #LinphoneChatMessage |
| | | * @deprecated 14/11/2017 Use #linphone_chat_room_create_message_from_utf8() instead. |
| | | * @donotwrap |
| | | */ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED LinphoneChatMessage* linphone_chat_room_create_message_2(LinphoneChatRoom *chat_room, const char* message, const char* external_body_url, LinphoneChatMessageState state, time_t time, bool_t is_read, bool_t is_incoming); |
| | | |
| | | /** |
| | | * Returns back pointer to #LinphoneCore object. |
| | | * @deprecated 15/09/2017 use linphone_chat_room_get_core() |
| | | * @donotwrap |
| | | **/ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED LinphoneCore* linphone_chat_room_get_lc(const LinphoneChatRoom *chat_room); |
| | | |
| | | /** |
| | | * Send a message to peer member of this chat room. |
| | | * @deprecated 13/10/2017 Use linphone_chat_message_send() instead. |
| | | * @param chat_room #LinphoneChatRoom object |
| | | * @param message message to be sent |
| | | * @donotwrap |
| | | */ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED void linphone_chat_room_send_message(LinphoneChatRoom *chat_room, const char *msg); |
| | | |
| | | /** |
| | | * Send a message to peer member of this chat room. |
| | | * @param chat_room #LinphoneChatRoom object |
| | | * @param message #LinphoneChatMessage object |
| | | * The state of the message sending will be notified via the callbacks defined in the #LinphoneChatMessageCbs object that can be obtained |
| | | * by calling linphone_chat_message_get_callbacks(). |
| | | * The #LinphoneChatMessage reference is transfered to the function and thus doesn't need to be unref'd by the application. |
| | | * @deprecated 13/10/2017 Use linphone_chat_message_send() instead. |
| | | * @donotwrap |
| | | */ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED void linphone_chat_room_send_chat_message(LinphoneChatRoom *chat_room, LinphoneChatMessage *message); |
| | | |
| | | /** |
| | | * Creates a message attached to the given chat room with a plain text content filled with the given message. |
| | | * @param chat_room the #LinphoneChatRoom object. @notnil |
| | | * @param message text message, NULL if absent. @maybenil |
| | | * @return a new #LinphoneChatMessage @notnil |
| | | * @deprecated 01/07/2020. Use linphone_chat_room_create_message_from_utf8() instead. |
| | | */ |
| | | LINPHONE_PUBLIC LINPHONE_DEPRECATED LinphoneChatMessage* linphone_chat_room_create_message(LinphoneChatRoom *chat_room,const char* message); |
| | | |
| | | /** |
| | | * @} |