Commit 42f6cf04 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

DCCP also needs listen()

parent 5804ebe1
......@@ -211,6 +211,9 @@ int *net_Listen (vlc_object_t *p_this, const char *psz_host,
case SOCK_STREAM:
case SOCK_RDM:
case SOCK_SEQPACKET:
#ifdef SOCK_DCCP
case SOCK_DCCP:
#endif
if (listen (fd, INT_MAX))
{
msg_Err (p_this, "socket listen error (%s)",
......
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