6 * Copyright (C) 2009-10 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /* Forward declarations */
26 struct sipe_core_private
;
32 sipe_conf_add(struct sipe_core_private
*sipe_private
,
36 * Processes incoming INVITE with
37 * Content-Type: application/ms-conf-invite+xml
38 * i.e. invitation to join conference.
40 * Server 2007+ functionality.
43 process_incoming_invite_conf(struct sipe_core_private
*sipe_private
,
47 * Create new session with Focus URI
49 * @param chat_session non-NULL if we rejoin a conference
50 * @param focus_uri non-NULL if we create a new conference
52 * @return new SIP session
55 sipe_conf_create(struct sipe_core_private
*sipe_private
,
56 struct sipe_chat_session
*chat_session
,
57 const gchar
*focus_uri
);
60 * Process of conference state
61 * Content-Type: application/conference-info+xml
64 sipe_process_conference(struct sipe_core_private
*sipe_private
,
68 * Invites counterparty to join conference.
71 sipe_invite_conf(struct sipe_core_private
*sipe_private
,
72 struct sip_session
*session
,
77 * Sends request to Focus.
78 * INFO method is a carrier of application/cccp+xml
81 sipe_conf_modify_user_role(struct sipe_core_private
*sipe_private
,
82 struct sip_session
*session
,
86 * Ejects user from conference.
87 * Sends request to Focus.
88 * INFO method is a carrier of application/cccp+xml
91 sipe_conf_delete_user(struct sipe_core_private
*sipe_private
,
92 struct sip_session
*session
,
96 * Invokes when we are ejected from conference
97 * for example or conference has been timed out.
100 sipe_conf_immcu_closed(struct sipe_core_private
*sipe_private
,
101 struct sip_session
*session
);
104 * Removes a session waiting to be accepted or declined by the user.
106 * @param sipe_private SIPE core data
107 * @param msg SIP CANCEL message. If NULL is passed, all sessions not accepted
111 sipe_conf_cancel_unaccepted(struct sipe_core_private
*sipe_private
,
115 * Invokes when we leave conversation.
116 * Usually by closing chat wingow.
119 conf_session_close(struct sipe_core_private
*sipe_private
,
120 struct sip_session
*session
);
123 * Invoked to process message delivery notification
127 sipe_process_imdn(struct sipe_core_private
*sipe_private
,