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
;
29 * Obtains conferencing capabilities enabled on the server.
31 * @param sipe_private SIPE core data
34 sipe_conf_get_capabilities(struct sipe_core_private
*sipe_private
);
37 * Checks whether given Multipoint Control Unit type is supported by the server.
40 sipe_conf_supports_mcu_type(struct sipe_core_private
*sipe_private
,
47 sipe_conf_add(struct sipe_core_private
*sipe_private
,
51 * Processes incoming INVITE with
52 * Content-Type: application/ms-conf-invite+xml
53 * i.e. invitation to join conference.
55 * Server 2007+ functionality.
58 process_incoming_invite_conf(struct sipe_core_private
*sipe_private
,
62 * Create new session with Focus URI
64 * @param chat_session non-NULL if we rejoin a conference
65 * @param focus_uri non-NULL if we create a new conference
67 * @return new SIP session
70 sipe_conf_create(struct sipe_core_private
*sipe_private
,
71 struct sipe_chat_session
*chat_session
,
72 const gchar
*focus_uri
);
75 * Process of conference state
76 * Content-Type: application/conference-info+xml
79 sipe_process_conference(struct sipe_core_private
*sipe_private
,
83 * Invites counterparty to join conference.
86 sipe_invite_conf(struct sipe_core_private
*sipe_private
,
87 struct sip_session
*session
,
92 * Sends request to Focus.
93 * INFO method is a carrier of application/cccp+xml
96 sipe_conf_modify_user_role(struct sipe_core_private
*sipe_private
,
97 struct sip_session
*session
,
101 * Ejects user from conference.
102 * Sends request to Focus.
103 * INFO method is a carrier of application/cccp+xml
106 sipe_conf_delete_user(struct sipe_core_private
*sipe_private
,
107 struct sip_session
*session
,
111 * Invokes when we are ejected from conference
112 * for example or conference has been timed out.
115 sipe_conf_immcu_closed(struct sipe_core_private
*sipe_private
,
116 struct sip_session
*session
);
119 * Removes a session waiting to be accepted or declined by the user.
121 * @param sipe_private SIPE core data
122 * @param msg SIP CANCEL message. If NULL is passed, all sessions not accepted
126 sipe_conf_cancel_unaccepted(struct sipe_core_private
*sipe_private
,
130 * Invokes when we leave conversation.
131 * Usually by closing chat wingow.
134 conf_session_close(struct sipe_core_private
*sipe_private
,
135 struct sip_session
*session
);
138 * Invoked to process message delivery notification
142 sipe_process_imdn(struct sipe_core_private
*sipe_private
,