fix: timeout changed to 2s + invalid free fix when the socket creation fails

This commit is contained in:
2025-06-16 01:16:16 +02:00
parent ddbaef1826
commit ff89de7fdc
5 changed files with 12 additions and 17 deletions

View File

@ -16,7 +16,7 @@ obj/%.o: src/%.c
$(CC) $(CFLAGS) -c $< -o $@
$(NAME): $(OBJ)
$(LD) $(LDFLAGS) -o $(NAME) $(OBJ)
$(LD) -o $(NAME) $(OBJ) $(LDFLAGS)
clean:
rm -rf obj