[asterisk-commits] qwell: branch qwell/fun_with_transports r386576 - in /team/qwell/fun_with_tra...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 25 15:33:20 CDT 2013
Author: qwell
Date: Thu Apr 25 15:33:17 2013
New Revision: 386576
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=386576
Log:
We don't need to pass in the transport. Kill it with fire.
Modified:
team/qwell/fun_with_transports/include/asterisk/res_sip.h
team/qwell/fun_with_transports/res/res_sip.c
team/qwell/fun_with_transports/res/res_sip_session.c
Modified: team/qwell/fun_with_transports/include/asterisk/res_sip.h
URL: http://svnview.digium.com/svn/asterisk/team/qwell/fun_with_transports/include/asterisk/res_sip.h?view=diff&rev=386576&r1=386575&r2=386576
==============================================================================
--- team/qwell/fun_with_transports/include/asterisk/res_sip.h (original)
+++ team/qwell/fun_with_transports/include/asterisk/res_sip.h Thu Apr 25 15:33:17 2013
@@ -914,7 +914,7 @@
* \retval non-NULL success
* \retval NULL failure
*/
- pjsip_dialog *ast_sip_create_dialog(const struct ast_sip_endpoint *endpoint, const char *aor_name, const char *request_user, pjsip_transport *transport);
+ pjsip_dialog *ast_sip_create_dialog(const struct ast_sip_endpoint *endpoint, const char *aor_name, const char *request_user);
/*!
* \brief General purpose method for creating a SIP request
Modified: team/qwell/fun_with_transports/res/res_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/qwell/fun_with_transports/res/res_sip.c?view=diff&rev=386576&r1=386575&r2=386576
==============================================================================
--- team/qwell/fun_with_transports/res/res_sip.c (original)
+++ team/qwell/fun_with_transports/res/res_sip.c Thu Apr 25 15:33:17 2013
@@ -344,7 +344,7 @@
return 0;
}
-pjsip_dialog *ast_sip_create_dialog(const struct ast_sip_endpoint *endpoint, const char *uri, const char *request_user, pjsip_transport *request_transport)
+pjsip_dialog *ast_sip_create_dialog(const struct ast_sip_endpoint *endpoint, const char *uri, const char *request_user)
{
pj_str_t local_uri = { "sip:temp at temp", 13 }, remote_uri;
pjsip_dialog *dlg = NULL;
Modified: team/qwell/fun_with_transports/res/res_sip_session.c
URL: http://svnview.digium.com/svn/asterisk/team/qwell/fun_with_transports/res/res_sip_session.c?view=diff&rev=386576&r1=386575&r2=386576
==============================================================================
--- team/qwell/fun_with_transports/res/res_sip_session.c (original)
+++ team/qwell/fun_with_transports/res/res_sip_session.c Thu Apr 25 15:33:17 2013
@@ -987,7 +987,6 @@
struct pjsip_inv_session *inv_session;
RAII_VAR(struct ast_sip_session *, session, NULL, ao2_cleanup);
pjmedia_sdp_session *offer;
- pjsip_transport *request_transport = NULL;
/* If no location has been provided use the AOR list from the endpoint itself */
location = S_OR(location, endpoint->aors);
@@ -1004,7 +1003,7 @@
return NULL;
}
- if (!(dlg = ast_sip_create_dialog(endpoint, uri, request_user, request_transport))) {
+ if (!(dlg = ast_sip_create_dialog(endpoint, uri, request_user))) {
return NULL;
}
More information about the asterisk-commits
mailing list