Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
mediastreamer2
Commits
82991edb
Commit
82991edb
authored
Jul 23, 2012
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change API to be able to retrieve information about RTCP address and port.
parent
3490d9f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
20 deletions
+55
-20
include/mediastreamer2/ice.h
include/mediastreamer2/ice.h
+12
-4
src/ice.c
src/ice.c
+43
-16
No files found.
include/mediastreamer2/ice.h
View file @
82991edb
...
...
@@ -396,17 +396,25 @@ MS2_PUBLIC void ice_check_list_set_remote_credentials(IceCheckList *cl, const ch
* Get the default local candidate for an ICE check list.
*
* @param cl A pointer to a check list
* @return A pointer to the default local candidate for the check list if found, NULL otherwise
* @param rtp_addr A pointer to store the RTP address
* @param rtp_port A pointer to store the RTP port
* @param rtcp_addr A pointer to store the RTCP address
* @param rtcp_port A pointer to store the RTCP port
* @return TRUE if the information have been successfully retrieved, FALSE otherwise
*/
MS2_PUBLIC
const
IceCandidate
*
ice_check_list_default_local_candidate
(
const
IceCheckList
*
cl
);
MS2_PUBLIC
bool_t
ice_check_list_default_local_candidate
(
const
IceCheckList
*
cl
,
const
char
**
rtp_addr
,
int
*
rtp_port
,
const
char
**
rtcp_addr
,
int
*
rtcp_port
);
/**
* Get the nominated valid local candidate for an ICE check list.
*
* @param cl A pointer to a check list
* @return A pointer to the nominated valid local candidate for the check list if found, NULL otherwise
* @param rtp_addr A pointer to store the RTP address
* @param rtp_port A pointer to store the RTP port
* @param rtcp_addr A pointer to store the RTCP address
* @param rtcp_port A pointer to store the RTCP port
* @return TRUE if the information have been successfully retrieved, FALSE otherwise
*/
MS2_PUBLIC
const
IceCandidate
*
ice_check_list_nominated_valid_local_candidate
(
const
IceCheckList
*
cl
);
MS2_PUBLIC
bool_t
ice_check_list_nominated_valid_local_candidate
(
const
IceCheckList
*
cl
,
const
char
**
rtp_addr
,
int
*
rtp_port
,
const
char
**
rtcp_addr
,
int
*
rtcp_port
);
/**
* Get the candidate type as a string.
...
...
src/ice.c
View file @
82991edb
...
...
@@ -368,9 +368,9 @@ const char * ice_check_list_remote_pwd(const IceCheckList* cl)
else
return
cl
->
session
->
remote_pwd
;
}
static
int
ice_find_default_local_candidate
(
const
IceCandidate
*
candidate
,
const
void
*
dummy
)
static
int
ice_find_default_local_candidate
(
const
IceCandidate
*
candidate
,
const
uint16_t
*
componentID
)
{
return
!
((
candidate
->
componentID
==
1
)
&&
(
candidate
->
is_default
==
TRUE
));
return
!
((
candidate
->
componentID
==
*
componentID
)
&&
(
candidate
->
is_default
==
TRUE
));
}
void
ice_check_list_set_remote_credentials
(
IceCheckList
*
cl
,
const
char
*
ufrag
,
const
char
*
pwd
)
...
...
@@ -378,26 +378,53 @@ void ice_check_list_set_remote_credentials(IceCheckList *cl, const char *ufrag,
ice_set_credentials
(
&
cl
->
remote_ufrag
,
&
cl
->
remote_pwd
,
ufrag
,
pwd
);
}
const
IceCandidate
*
ice_check_list_default_local_candidate
(
const
IceCheckList
*
cl
)
bool_t
ice_check_list_default_local_candidate
(
const
IceCheckList
*
cl
,
const
char
**
rtp_addr
,
int
*
rtp_port
,
const
char
**
rtcp_addr
,
int
*
rtcp_port
)
{
IceCandidate
*
candidate
=
NULL
;
MSList
*
elem
=
ms_list_find_custom
(
cl
->
local_candidates
,
(
MSCompareFunc
)
ice_find_default_local_candidate
,
NULL
);
if
(
elem
!=
NULL
)
{
candidate
=
(
IceCandidate
*
)
elem
->
data
;
}
return
candidate
;
uint16_t
componentID
;
MSList
*
rtp_elem
;
MSList
*
rtcp_elem
;
componentID
=
1
;
rtp_elem
=
ms_list_find_custom
(
cl
->
local_candidates
,
(
MSCompareFunc
)
ice_find_default_local_candidate
,
&
componentID
);
if
(
rtp_elem
==
NULL
)
return
FALSE
;
componentID
=
2
;
rtcp_elem
=
ms_list_find_custom
(
cl
->
local_candidates
,
(
MSCompareFunc
)
ice_find_default_local_candidate
,
&
componentID
);
if
((
rtcp_elem
==
NULL
)
&&
((
rtcp_addr
!=
NULL
)
||
(
rtcp_port
!=
NULL
)))
return
FALSE
;
candidate
=
(
IceCandidate
*
)
rtp_elem
->
data
;
if
(
rtp_addr
!=
NULL
)
*
rtp_addr
=
candidate
->
taddr
.
ip
;
if
(
rtp_port
!=
NULL
)
*
rtp_port
=
candidate
->
taddr
.
port
;
candidate
=
(
IceCandidate
*
)
rtcp_elem
->
data
;
if
(
rtcp_addr
!=
NULL
)
*
rtcp_addr
=
candidate
->
taddr
.
ip
;
if
(
rtcp_port
!=
NULL
)
*
rtcp_port
=
candidate
->
taddr
.
port
;
return
TRUE
;
}
const
IceCandidate
*
ice_check_list_nominated_valid_local_candidate
(
const
IceCheckList
*
cl
)
bool_t
ice_check_list_nominated_valid_local_candidate
(
const
IceCheckList
*
cl
,
const
char
**
rtp_addr
,
int
*
rtp_port
,
const
char
**
rtcp_addr
,
int
*
rtcp_port
)
{
IceCandidate
*
candidate
=
NULL
;
uint16_t
componentID
=
1
;
MSList
*
elem
=
ms_list_find_custom
(
cl
->
valid_list
,
(
MSCompareFunc
)
ice_find_nominated_valid_pair_from_componentID
,
&
componentID
);
if
(
elem
!=
NULL
)
{
IceValidCandidatePair
*
valid_pair
=
(
IceValidCandidatePair
*
)
elem
->
data
;
candidate
=
valid_pair
->
valid
->
local
;
}
return
candidate
;
IceValidCandidatePair
*
valid_pair
=
NULL
;
uint16_t
componentID
;
MSList
*
rtp_elem
;
MSList
*
rtcp_elem
;
componentID
=
1
;
rtp_elem
=
ms_list_find_custom
(
cl
->
valid_list
,
(
MSCompareFunc
)
ice_find_nominated_valid_pair_from_componentID
,
&
componentID
);
if
(
rtp_elem
==
NULL
)
return
FALSE
;
componentID
=
2
;
rtcp_elem
=
ms_list_find_custom
(
cl
->
valid_list
,
(
MSCompareFunc
)
ice_find_nominated_valid_pair_from_componentID
,
&
componentID
);
if
((
rtcp_elem
==
NULL
)
&&
((
rtcp_addr
!=
NULL
)
||
(
rtcp_port
!=
NULL
)))
return
FALSE
;
valid_pair
=
(
IceValidCandidatePair
*
)
rtp_elem
->
data
;
candidate
=
valid_pair
->
valid
->
local
;
if
(
rtp_addr
!=
NULL
)
*
rtp_addr
=
candidate
->
taddr
.
ip
;
if
(
rtp_port
!=
NULL
)
*
rtp_port
=
candidate
->
taddr
.
port
;
valid_pair
=
(
IceValidCandidatePair
*
)
rtcp_elem
->
data
;
candidate
=
valid_pair
->
valid
->
local
;
if
(
rtcp_addr
!=
NULL
)
*
rtcp_addr
=
candidate
->
taddr
.
ip
;
if
(
rtcp_port
!=
NULL
)
*
rtcp_port
=
candidate
->
taddr
.
port
;
return
TRUE
;
}
static
void
ice_check_list_queue_triggered_check
(
IceCheckList
*
cl
,
IceCandidatePair
*
pair
)
...
...
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