From 8575361affcba0fe6c69d89b72ebd7faa396ca94 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 8 Sep 2020 09:49:23 +0100 Subject: [PATCH] Allow IPv4 and IPv6 connections to the reflector. --- P25Reflector/Makefile | 2 +- P25Reflector/Version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/P25Reflector/Makefile b/P25Reflector/Makefile index 81fba01..1521724 100644 --- a/P25Reflector/Makefile +++ b/P25Reflector/Makefile @@ -1,6 +1,6 @@ CC = cc CXX = c++ -CFLAGS = -g -O3 -Wall -DHAVE_LOG_H -std=c++0x -pthread +CFLAGS = -g -O3 -Wall -DHAVE_LOG_H -DUDP_SOCKET_MAX=2 -std=c++0x -pthread LIBS = -lpthread LDFLAGS = -g diff --git a/P25Reflector/Version.h b/P25Reflector/Version.h index 2dbc808..78513c7 100644 --- a/P25Reflector/Version.h +++ b/P25Reflector/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20200903"; +const char* VERSION = "20200908"; #endif