Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mediastreamer2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
7
Merge Requests
7
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
mediastreamer2
Commits
d92ab419
Commit
d92ab419
authored
Jul 12, 2012
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Perform regular nomination to conclude ICE processing.
parent
0a330d7f
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
103 additions
and
19 deletions
+103
-19
ice.h
include/mediastreamer2/ice.h
+11
-1
ice.c
src/ice.c
+92
-18
No files found.
include/mediastreamer2/ice.h
View file @
d92ab419
...
...
@@ -147,6 +147,11 @@ typedef struct _IcePairFoundation {
char
remote
[
32
];
/**< Foundation of the remote candidate */
}
IcePairFoundation
;
typedef
struct
_IceValidCandidatePair
{
IceCandidatePair
*
valid
;
IceCandidatePair
*
generated_from
;
}
IceValidCandidatePair
;
/**
* Structure representing an ICE check list.
*
...
...
@@ -161,7 +166,7 @@ typedef struct _IceCheckList {
MSList
*
remote_candidates
;
/**< List of IceCandidate structures */
MSList
*
pairs
;
/**< List of IceCandidatePair structures */
MSList
*
triggered_checks_queue
;
/**< List of IceCandidatePair structures */
MSList
*
valid_list
;
/**< List of IceCandidatePair structures */
MSList
*
valid_list
;
/**< List of Ice
Valid
CandidatePair structures */
MSList
*
foundations
;
/**< List of IcePairFoundation structures */
MSList
*
componentIDs
;
/**< List of uint16_t */
IceCheckListState
state
;
...
...
@@ -413,6 +418,11 @@ MS2_PUBLIC void ice_dump_candidates(IceCheckList *cl);
*/
MS2_PUBLIC
void
ice_dump_candidate_pairs
(
IceCheckList
*
cl
);
/**
* Dump the valid list of an ICE check list in the traces (debug function).
*/
MS2_PUBLIC
void
ice_dump_valid_list
(
IceCheckList
*
cl
);
/**
* Dump the list of candidate pair foundations of an ICE check list in the traces (debug function).
*/
...
...
src/ice.c
View file @
d92ab419
This diff is collapsed.
Click to expand it.
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