From d35f0815859d67018180649f90867fb1ac27aed3 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 4 Mar 2019 19:17:55 +0900 Subject: [PATCH] Fix new connections not being created --- src/UDPConnection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UDPConnection.c b/src/UDPConnection.c index 653c238..26d2e88 100644 --- a/src/UDPConnection.c +++ b/src/UDPConnection.c @@ -10,7 +10,7 @@ UDPC_Context* UDPC_init(uint16_t listenPort, int isClient) { UDPC_Context *context = malloc(sizeof(UDPC_Context)); context->error = UDPC_SUCCESS; - context->flags = 0xC; + context->flags = 0x4C; if(isClient != 0) context->flags |= 0x2; context->threadFlags = 0; context->conMap = UDPC_HashMap_init(13, sizeof(UDPC_INTERNAL_ConnectionData)); -- 2.49.0