summaryrefslogtreecommitdiff
path: root/pjnath/src/pjnath-test/ice_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'pjnath/src/pjnath-test/ice_test.c')
-rw-r--r--pjnath/src/pjnath-test/ice_test.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/pjnath/src/pjnath-test/ice_test.c b/pjnath/src/pjnath-test/ice_test.c
index 7603b402..6053d442 100644
--- a/pjnath/src/pjnath-test/ice_test.c
+++ b/pjnath/src/pjnath-test/ice_test.c
@@ -512,6 +512,11 @@ static int perform_test(const char *title,
rc = start_ice(&sess->callee, &sess->caller);
if (rc != PJ_SUCCESS) {
destroy_sess(sess, 500);
+ if (rc == PJ_ETOOMANY) {
+ /* Ignore this, probably the host has too many interfaces */
+ PJ_LOG(3,("", " The previous error was ignored"));
+ return 0;
+ }
return -120;
}