Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
e698e70c
Commit
e698e70c
authored
13 years ago
by
Alexandre Savard
Browse files
Options
Downloads
Patches
Plain Diff
#8084: Fix get sip header segfault when stun transport selected
parent
d6cc8a4f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
daemon/src/sip/sipaccount.cpp
+12
-2
12 additions, 2 deletions
daemon/src/sip/sipaccount.cpp
daemon/src/sip/sipvoiplink.cpp
+15
-12
15 additions, 12 deletions
daemon/src/sip/sipvoiplink.cpp
with
27 additions
and
14 deletions
daemon/src/sip/sipaccount.cpp
+
12
−
2
View file @
e698e70c
...
...
@@ -804,6 +804,16 @@ std::string SIPAccount::getContactHeader() const
{
std
::
string
scheme
;
std
::
string
transport
;
pjsip_transport_type_e
transportType
=
transportType_
;
if
(
transport_
==
NULL
)
{
ERROR
(
"Transport not created yet"
);
}
// The transport type must be specified, in our case START_OTHER refers to stun transport
if
(
transportType
==
PJSIP_TRANSPORT_START_OTHER
)
{
transportType
=
PJSIP_TRANSPORT_UDP
;
}
// Use the CONTACT header provided by the registrar if any
if
(
!
contactHeader_
.
empty
())
...
...
@@ -811,12 +821,12 @@ std::string SIPAccount::getContactHeader() const
// Else we determine this infor based on transport information
std
::
string
address
,
port
;
link_
->
findLocalAddressFromTransport
(
transport_
,
transportType
_
,
address
,
port
);
link_
->
findLocalAddressFromTransport
(
transport_
,
transportType
,
address
,
port
);
// UDP does not require the transport specification
if
(
transportType_
==
PJSIP_TRANSPORT_TLS
)
{
scheme
=
"sips:"
;
transport
=
";transport="
+
std
::
string
(
pjsip_transport_get_type_name
(
transportType
_
));
transport
=
";transport="
+
std
::
string
(
pjsip_transport_get_type_name
(
transportType
));
}
else
scheme
=
"sip:"
;
...
...
This diff is collapsed.
Click to expand it.
daemon/src/sip/sipvoiplink.cpp
+
15
−
12
View file @
e698e70c
...
...
@@ -88,7 +88,7 @@ static std::map<std::string, std::string> transferCallID;
* localport, localip, localexternalport
* @param call a SIPCall valid pointer
*/
void
setCallMediaLocal
(
SIPCall
*
call
,
const
std
::
string
&
localIP
);
static
void
setCallMediaLocal
(
SIPCall
*
call
,
const
std
::
string
&
localIP
);
/**
* Helper function to parser header from incoming sip messages
...
...
@@ -101,17 +101,17 @@ static pjsip_endpoint *endpt_;
static
pjsip_module
mod_ua_
;
static
pj_thread_t
*
thread
;
void
sdp_media_update_cb
(
pjsip_inv_session
*
inv
,
pj_status_t
status
UNUSED
);
void
sdp_request_offer_cb
(
pjsip_inv_session
*
inv
,
const
pjmedia_sdp_session
*
offer
);
void
sdp_create_offer_cb
(
pjsip_inv_session
*
inv
,
pjmedia_sdp_session
**
p_offer
);
void
invite_session_state_changed_cb
(
pjsip_inv_session
*
inv
,
pjsip_event
*
e
);
void
outgoing_request_forked_cb
(
pjsip_inv_session
*
inv
,
pjsip_event
*
e
);
void
transaction_state_changed_cb
(
pjsip_inv_session
*
inv
,
pjsip_transaction
*
tsx
,
pjsip_event
*
e
);
void
registration_cb
(
pjsip_regc_cbparam
*
param
);
pj_bool_t
transaction_request_cb
(
pjsip_rx_data
*
rdata
);
pj_bool_t
transaction_response_cb
(
pjsip_rx_data
*
rdata
UNUSED
)
;
static
void
sdp_media_update_cb
(
pjsip_inv_session
*
inv
,
pj_status_t
status
UNUSED
);
static
void
sdp_request_offer_cb
(
pjsip_inv_session
*
inv
,
const
pjmedia_sdp_session
*
offer
);
static
void
sdp_create_offer_cb
(
pjsip_inv_session
*
inv
,
pjmedia_sdp_session
**
p_offer
);
static
void
invite_session_state_changed_cb
(
pjsip_inv_session
*
inv
,
pjsip_event
*
e
);
static
void
outgoing_request_forked_cb
(
pjsip_inv_session
*
inv
,
pjsip_event
*
e
);
static
void
transaction_state_changed_cb
(
pjsip_inv_session
*
inv
,
pjsip_transaction
*
tsx
,
pjsip_event
*
e
);
static
void
registration_cb
(
pjsip_regc_cbparam
*
param
);
static
pj_bool_t
transaction_request_cb
(
pjsip_rx_data
*
rdata
);
static
pj_bool_t
transaction_response_cb
(
pjsip_rx_data
*
rdata
UNUSED
)
;
void
transfer_client_cb
(
pjsip_evsub
*
sub
,
pjsip_event
*
event
);
static
void
transfer_client_cb
(
pjsip_evsub
*
sub
,
pjsip_event
*
event
);
/**
* Send a reINVITE inside an active dialog to modify its state
...
...
@@ -1470,7 +1470,9 @@ pjsip_tpselector *SIPVoIPLink::initTransportSelector(pjsip_transport *transport,
void
SIPVoIPLink
::
createStunTransport
(
SIPAccount
*
account
)
{
pj_str_t
stunServer
=
account
->
getStunServerName
();
pj_uint16_t
stunPort
=
account
->
getStunPort
();
pj_uint16_t
stunPort
=
PJ_STUN_PORT
;
// account->getStunPort();
DEBUG
(
"UserAgent: Create stun transport server name: %s, port: %d"
,
account
->
getStunServerName
(),
stunPort
);
// account->getStunPort());
if
(
stunServerResolve
(
account
)
!=
PJ_SUCCESS
)
{
ERROR
(
"Can't resolve STUN server"
);
...
...
@@ -1561,6 +1563,7 @@ void SIPVoIPLink::findLocalAddressFromTransport(pjsip_transport *transport, pjsi
int
i_port
=
0
;
// Find the local address and port for this transport
DEBUG
(
"transportType: %d
\n
"
,
transportType
);
if
(
pjsip_tpmgr_find_local_addr
(
tpmgr
,
pool_
,
transportType
,
tp_sel
,
&
localAddress
,
&
i_port
)
!=
PJ_SUCCESS
)
{
WARN
(
"SIPVoIPLink: Could not retreive local address and port from transport, using %s:%s"
,
addr
.
c_str
(),
port
.
c_str
());
return
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment