Commit 6fbf4cb7 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

RTP out: ignore ICMP Prohibited errors

parent b9c25bc9
......@@ -1663,6 +1663,7 @@ static void* ThreadSend( void *data )
switch( net_errno )
{
/* Soft errors (e.g. ICMP): */
case EPERM: /* Prohibited */
case ECONNREFUSED: /* Port unreachable */
case ENOPROTOOPT:
#ifdef EPROTO
......
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