Skip to content
Snippets Groups Projects
Commit 42f6cf04 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

DCCP also needs listen()

parent 5804ebe1
No related branches found
No related tags found
Loading
......@@ -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)",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment