summaryrefslogtreecommitdiff
path: root/pjsip/include/pjsua-lib/pjsua_internal.h
diff options
context:
space:
mode:
authorRiza Sulistyo <riza@teluu.com>2016-05-10 14:58:41 +0000
committerRiza Sulistyo <riza@teluu.com>2016-05-10 14:58:41 +0000
commitfcf865c4deb374fad719c5003f9a554f8ca40b82 (patch)
tree233dabc25dbd9c9d15ff9f377701b333a56d8c78 /pjsip/include/pjsua-lib/pjsua_internal.h
parente65297b91432118cfbc0b561b93846d7fa624253 (diff)
Fixed #1914: onCreateMediaTransport() callback might not be called on PJSUA2.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5288 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/include/pjsua-lib/pjsua_internal.h')
-rw-r--r--pjsip/include/pjsua-lib/pjsua_internal.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/pjsip/include/pjsua-lib/pjsua_internal.h b/pjsip/include/pjsua-lib/pjsua_internal.h
index e1fad139..1c4d0a1d 100644
--- a/pjsip/include/pjsua-lib/pjsua_internal.h
+++ b/pjsip/include/pjsua-lib/pjsua_internal.h
@@ -189,6 +189,13 @@ struct pjsua_call
pj_timer_entry reinv_timer; /**< Reinvite retry timer. */
pj_bool_t reinv_pending;/**< Pending until CONFIRMED state. */
pj_bool_t reinv_ice_sent;/**< Has reinvite for ICE upd sent? */
+ pjsip_rx_data *incoming_data;/**< Cloned incoming call rdata.
+ On pjsua2, when handling incoming
+ call, onCreateMediaTransport() will
+ not be called since the call isn't
+ created yet. This temporary
+ variable is used to handle such
+ case, see ticket #1916. */
};