6 * Copyright (C) 2009 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
24 * Interface dependencies:
29 /* Forward declarations */
32 /* Helper macros to iterate over dialog list in a SIP session */
33 #define SIPE_DIALOG_FOREACH { \
34 GSList *entry = session->dialogs; \
36 struct sip_dialog *dialog = entry->data; \
38 #define SIPE_DIALOG_FOREACH_END }}
40 /* dialog is the new term for call-leg */
42 gchar
*with
; /* URI */
47 * 0 - didn't participate
56 GSList
*supported
; /* counterparty capabilities */
58 /** corresponds to Session-Expires SIP header value */
60 gboolean is_established
;
61 struct transaction
*outgoing_invite
;
64 /* RFC3265 subscription */
65 struct sip_subscription
{
66 struct sip_dialog dialog
;
70 /* Forward declaration */
74 * Free dialog structure
76 * @param dialog (in) Dialog to be freed. May be NULL.
78 void sipe_dialog_free(struct sip_dialog
*dialog
);
81 * Free subscription structure
83 * @param subscription (in) Subscription to be freed. May be NULL.
85 void sipe_subscription_free(struct sip_subscription
*subscription
);
88 * Add a new, empty dialog to a session
92 * @return dialog the new dialog structure
94 struct sip_dialog
*sipe_dialog_add(struct sip_session
*session
);
97 * Find a dialog in a session
99 * @param session (in) may be NULL
100 * @param who (in) dialog identifier. May be NULL
102 * @return dialog the requested dialog or NULL
104 struct sip_dialog
*sipe_dialog_find(struct sip_session
*session
,
108 * Remove a dialog from a session
110 * @param session (in) may be NULL
111 * @param who (in) dialog identifier. May be NULL
113 void sipe_dialog_remove(struct sip_session
*session
, const gchar
*who
);
116 * Remove a dialog from a session
118 * @param session (in) may be NULL
119 * @param dialog (in) dialog identifier. Should contain Call-ID, to-tag and from-tag
120 * to unambiguously identify dialog. May be NULL
123 sipe_dialog_remove_3(struct sip_session
*session
,
124 struct sip_dialog
*dialog_in
);
127 * Remove all dialogs from a session
129 * @param session (in)
131 void sipe_dialog_remove_all(struct sip_session
*session
);
134 * Does a session have any dialogs?
136 * @param session (in)
138 #define sipe_dialog_any(session) (session->dialogs != NULL)
141 * Return first dialog of a session
143 * @param session (in)
145 #define sipe_dialog_first(session) ((struct sip_dialog *)session->dialogs->data)
148 * Update routes in a dialog from a message
150 * @param dialog (in,out) dialog to fill
151 * @param msg (in) mesage
152 * @param outgoing (in) outgoing or incoming message
154 void sipe_dialog_parse_routes(struct sip_dialog
*dialog
,
155 const struct sipmsg
*msg
,
159 * Fill dialog structure from SIP message
161 * @param dialog (in,out) dialog to fill
162 * @param msg (in) mesage
163 * @param outgoing (in) outgoing or incoming message
165 void sipe_dialog_parse(struct sip_dialog
*dialog
,
166 const struct sipmsg
*msg
,