Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
72dda7df
Commit
72dda7df
authored
Apr 08, 2014
by
Youness Alaoui
Committed by
Olivier Crête
May 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove priority functions from public header file and move to agent-priv.h
parent
3045c9b5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
19 deletions
+20
-19
agent/agent-priv.h
agent/agent-priv.h
+18
-0
agent/candidate.h
agent/candidate.h
+0
-19
tests/test-priority.c
tests/test-priority.c
+2
-0
No files found.
agent/agent-priv.h
View file @
72dda7df
...
...
@@ -232,6 +232,24 @@ output_message_get_size (const NiceOutputMessage *message);
gssize
agent_socket_send
(
NiceSocket
*
sock
,
const
NiceAddress
*
addr
,
gsize
len
,
const
gchar
*
buf
);
guint32
nice_candidate_jingle_priority
(
NiceCandidate
*
candidate
);
guint32
nice_candidate_msn_priority
(
NiceCandidate
*
candidate
);
guint32
nice_candidate_ice_priority_full
(
guint
type_pref
,
guint
local_pref
,
guint
component_id
);
guint32
nice_candidate_ice_priority
(
const
NiceCandidate
*
candidate
,
gboolean
reliable
,
gboolean
nat_assisted
);
guint64
nice_candidate_pair_priority
(
guint32
o_prio
,
guint32
a_prio
);
/*
* nice_debug_init:
*
...
...
agent/candidate.h
View file @
72dda7df
...
...
@@ -220,25 +220,6 @@ nice_candidate_free (NiceCandidate *candidate);
NiceCandidate
*
nice_candidate_copy
(
const
NiceCandidate
*
candidate
);
guint32
nice_candidate_jingle_priority
(
NiceCandidate
*
candidate
);
guint32
nice_candidate_msn_priority
(
NiceCandidate
*
candidate
);
guint32
nice_candidate_ice_priority_full
(
guint
type_pref
,
guint
local_pref
,
guint
component_id
);
guint32
nice_candidate_ice_priority
(
const
NiceCandidate
*
candidate
,
gboolean
reliable
,
gboolean
nat_assisted
);
guint64
nice_candidate_pair_priority
(
guint32
o_prio
,
guint32
a_prio
);
G_END_DECLS
#endif
/* _CANDIDATE_H */
...
...
tests/test-priority.c
View file @
72dda7df
...
...
@@ -39,6 +39,8 @@
#endif
#include "agent.h"
#include "agent-priv.h"
int
main
(
void
)
...
...
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