Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblinphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Board
Labels
Milestones
Merge Requests
21
Merge Requests
21
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
liblinphone
Commits
b35df101
Commit
b35df101
authored
Mar 09, 2018
by
Sylvain Berfini
🎩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started multi routes but currently crashes...
parent
d41fb1f9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
19 deletions
+42
-19
linphonecore.c
coreapi/linphonecore.c
+10
-5
private_structs.h
coreapi/private_structs.h
+1
-1
proxy.c
coreapi/proxy.c
+23
-13
proxy_config.h
include/linphone/proxy_config.h
+8
-0
No files found.
coreapi/linphonecore.c
View file @
b35df101
...
...
@@ -3421,11 +3421,16 @@ LinphoneCall * linphone_core_start_refered_call(LinphoneCore *lc, LinphoneCall *
system.
*/
static
bctbx_list_t
*
make_routes_for_proxy
(
LinphoneProxyConfig
*
proxy
,
const
LinphoneAddress
*
dest
){
bctbx_list_t
*
ret
=
NULL
;
const
char
*
local_route
=
linphone_proxy_config_get_route
(
proxy
);
const
LinphoneAddress
*
srv_route
=
linphone_proxy_config_get_service_route
(
proxy
);
if
(
local_route
){
ret
=
bctbx_list_append
(
ret
,
sal_address_new
(
local_route
));
bctbx_list_t
*
ret
=
NULL
;
const
bctbx_list_t
*
proxy_routes
=
linphone_proxy_config_get_routes
(
proxy
);
bctbx_list_t
*
proxy_routes_iterator
=
(
bctbx_list_t
*
)
proxy_routes
;
const
LinphoneAddress
*
srv_route
=
linphone_proxy_config_get_service_route
(
proxy
);
while
(
proxy_routes_iterator
)
{
const
char
*
local_route
=
(
const
char
*
)
bctbx_list_get_data
(
proxy_routes_iterator
);
if
(
local_route
)
{
ret
=
bctbx_list_append
(
ret
,
sal_address_new
(
local_route
));
}
proxy_routes_iterator
=
bctbx_list_next
(
proxy_routes_iterator
);
}
if
(
srv_route
){
ret
=
bctbx_list_append
(
ret
,
sal_address_clone
(
L_GET_PRIVATE_FROM_C_OBJECT
(
srv_route
)
->
getInternalAddress
()));
...
...
coreapi/private_structs.h
View file @
b35df101
...
...
@@ -90,7 +90,7 @@ struct _LinphoneProxyConfig
LinphoneAddress
*
identity_address
;
LinphoneAddress
*
contact_address
;
LinphoneAddress
*
contact_address_without_params
;
char
*
reg_route
;
bctbx_list_t
*
reg_routes
;
char
*
quality_reporting_collector
;
char
*
realm
;
char
*
contact_params
;
...
...
coreapi/proxy.c
View file @
b35df101
...
...
@@ -113,7 +113,7 @@ static void linphone_proxy_config_init(LinphoneCore* lc, LinphoneProxyConfig *cf
const
char
*
dial_prefix
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"dial_prefix"
,
NULL
)
:
NULL
;
const
char
*
identity
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"reg_identity"
,
NULL
)
:
NULL
;
const
char
*
proxy
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"reg_proxy"
,
NULL
)
:
NULL
;
const
char
*
route
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"reg_route"
,
NULL
)
:
NULL
;
const
char
*
route
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"reg_route"
,
NULL
)
:
NULL
;
//TODO return list instead of string
const
char
*
realm
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"realm"
,
NULL
)
:
NULL
;
const
char
*
quality_reporting_collector
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"quality_reporting_collector"
,
NULL
)
:
NULL
;
const
char
*
contact_params
=
lc
?
lp_config_get_default_string
(
lc
->
config
,
"proxy"
,
"contact_parameters"
,
NULL
)
:
NULL
;
...
...
@@ -130,7 +130,7 @@ static void linphone_proxy_config_init(LinphoneCore* lc, LinphoneProxyConfig *cf
cfg
->
identity_address
=
identity
?
linphone_address_new
(
identity
)
:
NULL
;
cfg
->
reg_identity
=
cfg
->
identity_address
?
linphone_address_as_string
(
cfg
->
identity_address
)
:
NULL
;
cfg
->
reg_proxy
=
proxy
?
ms_strdup
(
proxy
)
:
NULL
;
cfg
->
reg_route
=
route
?
ms_strdup
(
route
)
:
NULL
;
cfg
->
reg_route
s
=
route
?
bctbx_list_append
(
cfg
->
reg_routes
,
ms_strdup
(
route
))
:
NULL
;
//TODO get list directly
cfg
->
realm
=
realm
?
ms_strdup
(
realm
)
:
NULL
;
cfg
->
quality_reporting_enabled
=
lc
?
!!
lp_config_get_default_int
(
lc
->
config
,
"proxy"
,
"quality_reporting_enabled"
,
0
)
:
0
;
cfg
->
quality_reporting_collector
=
quality_reporting_collector
?
ms_strdup
(
quality_reporting_collector
)
:
NULL
;
...
...
@@ -183,13 +183,18 @@ bool_t linphone_proxy_config_compute_publish_params_hash(LinphoneProxyConfig * c
char
hash
[
33
];
char
saved
;
unsigned
long
long
previous_hash
[
2
];
bctbx_list_t
*
routes_iterator
=
cfg
->
reg_routes
;
previous_hash
[
0
]
=
cfg
->
previous_publish_config_hash
[
0
];
previous_hash
[
1
]
=
cfg
->
previous_publish_config_hash
[
1
];
source
=
ms_strcat_printf
(
source
,
"%i"
,
cfg
->
privacy
);
source
=
append_linphone_address
(
cfg
->
identity_address
,
source
);
source
=
append_string
(
cfg
->
reg_proxy
,
source
);
source
=
append_string
(
cfg
->
reg_route
,
source
);
while
(
routes_iterator
)
{
const
char
*
route
=
(
const
char
*
)
bctbx_list_get_data
(
routes_iterator
);
source
=
append_string
(
route
,
source
);
routes_iterator
=
bctbx_list_next
(
routes_iterator
);
}
source
=
append_string
(
cfg
->
realm
,
source
);
source
=
ms_strcat_printf
(
source
,
"%i"
,
cfg
->
publish_expires
);
source
=
ms_strcat_printf
(
source
,
"%i"
,
cfg
->
publish
);
...
...
@@ -235,7 +240,7 @@ void _linphone_proxy_config_destroy(LinphoneProxyConfig *cfg){
if
(
cfg
->
reg_proxy
!=
NULL
)
ms_free
(
cfg
->
reg_proxy
);
if
(
cfg
->
reg_identity
!=
NULL
)
ms_free
(
cfg
->
reg_identity
);
if
(
cfg
->
identity_address
!=
NULL
)
linphone_address_unref
(
cfg
->
identity_address
);
if
(
cfg
->
reg_route
!=
NULL
)
ms_free
(
cfg
->
reg_rout
e
);
if
(
cfg
->
reg_route
s
!=
NULL
)
bctbx_list_free_with_data
(
cfg
->
reg_routes
,
ms_fre
e
);
if
(
cfg
->
quality_reporting_collector
!=
NULL
)
ms_free
(
cfg
->
quality_reporting_collector
);
if
(
cfg
->
ssctx
!=
NULL
)
sip_setup_context_free
(
cfg
->
ssctx
);
if
(
cfg
->
realm
!=
NULL
)
ms_free
(
cfg
->
realm
);
...
...
@@ -348,9 +353,9 @@ const char *linphone_proxy_config_get_domain(const LinphoneProxyConfig *cfg){
LinphoneStatus
linphone_proxy_config_set_route
(
LinphoneProxyConfig
*
cfg
,
const
char
*
route
)
{
if
(
cfg
->
reg_route
!=
NULL
){
ms_free
(
cfg
->
reg_rout
e
);
cfg
->
reg_route
=
NULL
;
if
(
cfg
->
reg_route
s
!=
NULL
){
bctbx_list_free_with_data
(
cfg
->
reg_routes
,
ms_fre
e
);
cfg
->
reg_route
s
=
NULL
;
}
if
(
route
!=
NULL
&&
route
[
0
]
!=
'\0'
){
SalAddress
*
addr
;
...
...
@@ -362,7 +367,7 @@ LinphoneStatus linphone_proxy_config_set_route(LinphoneProxyConfig *cfg, const c
addr
=
sal_address_new
(
tmp
);
if
(
addr
!=
NULL
){
sal_address_destroy
(
addr
);
cfg
->
reg_route
=
tmp
;
cfg
->
reg_route
s
=
bctbx_list_append
(
cfg
->
reg_routes
,
tmp
)
;
return
0
;
}
else
{
ms_free
(
tmp
);
...
...
@@ -934,8 +939,13 @@ void _linphone_proxy_config_unpublish(LinphoneProxyConfig *obj) {
}
}
const
char
*
linphone_proxy_config_get_route
(
const
LinphoneProxyConfig
*
cfg
){
return
cfg
->
reg_route
;
const
char
*
linphone_proxy_config_get_route
(
const
LinphoneProxyConfig
*
cfg
)
{
if
(
cfg
->
reg_routes
)
return
(
const
char
*
)
bctbx_list_get_data
(
cfg
->
reg_routes
);
return
NULL
;
}
const
bctbx_list_t
*
linphone_proxy_config_get_routes
(
const
LinphoneProxyConfig
*
cfg
)
{
return
cfg
->
reg_routes
;
}
const
LinphoneAddress
*
linphone_proxy_config_get_identity_address
(
const
LinphoneProxyConfig
*
cfg
){
...
...
@@ -1116,8 +1126,8 @@ void linphone_proxy_config_write_to_config_file(LpConfig *config, LinphoneProxyC
if
(
cfg
->
reg_proxy
!=
NULL
){
lp_config_set_string
(
config
,
key
,
"reg_proxy"
,
cfg
->
reg_proxy
);
}
if
(
cfg
->
reg_route
!=
NULL
)
{
lp_config_set_string
(
config
,
key
,
"reg_route"
,
cfg
->
reg_route
);
if
(
cfg
->
reg_route
s
!=
NULL
)
{
lp_config_set_string
_list
(
config
,
key
,
"reg_route"
,
cfg
->
reg_routes
);
}
if
(
cfg
->
reg_identity
!=
NULL
){
lp_config_set_string
(
config
,
key
,
"reg_identity"
,
cfg
->
reg_identity
);
...
...
@@ -1187,7 +1197,7 @@ LinphoneProxyConfig *linphone_proxy_config_new_from_config_file(LinphoneCore* lc
CONFIGURE_STRING_VALUE
(
cfg
,
config
,
key
,
identity
,
"reg_identity"
)
CONFIGURE_STRING_VALUE
(
cfg
,
config
,
key
,
server_addr
,
"reg_proxy"
)
CONFIGURE_STRING_VALUE
(
cfg
,
config
,
key
,
route
,
"reg_route"
)
cfg
->
reg_routes
=
linphone_config_get_string_list
(
config
,
key
,
"reg_route"
,
NULL
);
CONFIGURE_STRING_VALUE
(
cfg
,
config
,
key
,
realm
,
"realm"
)
...
...
include/linphone/proxy_config.h
View file @
b35df101
...
...
@@ -257,9 +257,17 @@ LINPHONE_PUBLIC void linphone_proxy_config_set_realm(LinphoneProxyConfig *cfg, c
/**
* @return the route set for this proxy configuration.
* @deprecated Use linphone_proxy_config_get_routes() instead.
**/
LINPHONE_PUBLIC
const
char
*
linphone_proxy_config_get_route
(
const
LinphoneProxyConfig
*
cfg
);
/**
* Gets the list of the routes set for this proxy config.
* @param[in] cfg #LinphoneProxyConfig object.
* @return \bctbx_list{const char *} the list of routes.
*/
LINPHONE_PUBLIC
const
bctbx_list_t
*
linphone_proxy_config_get_routes
(
const
LinphoneProxyConfig
*
cfg
);
/**
* @return the SIP identity that belongs to this proxy configuration.
**/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment