summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2020-05-21 22:13:14 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2020-08-20 19:52:58 -0400
commit833c1aa4cc442f2e25216dc411651a674d36c09a (patch)
treeaed74717a0aa8c8db065be2318a143cb4aeb4c85 /tests
parent620eec948ce107a40a9d7a79508e7143d28181c5 (diff)
candidate: Hide the internal implementation from API
This is slightly an API break, but it should never have been public.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-drop-invalid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test-drop-invalid.c b/tests/test-drop-invalid.c
index 88907ac..def5b03 100644
--- a/tests/test-drop-invalid.c
+++ b/tests/test-drop-invalid.c
@@ -41,6 +41,7 @@
#endif
#include "agent.h"
+#include "candidate-priv.h"
#include "socket/socket.h"
@@ -223,7 +224,7 @@ static void set_candidates (NiceAgent *from, guint from_stream,
*/
for (item1 = cands; item1; item1 = item1->next) {
- NiceCandidate *cand = item1->data;
+ NiceCandidateImpl *cand = item1->data;
NiceSocket *nicesock = cand->sockptr;
g_assert (nicesock);