Commit 72dda7df authored by Youness Alaoui's avatar Youness Alaoui Committed by Olivier Crête

Remove priority functions from public header file and move to agent-priv.h

parent 3045c9b5
......@@ -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:
*
......
......@@ -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 */
......
......@@ -39,6 +39,8 @@
#endif
#include "agent.h"
#include "agent-priv.h"
int
main (void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment