diff options
Diffstat (limited to 'src/interface.c')
-rw-r--r-- | src/interface.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interface.c b/src/interface.c index 29e372a5e..196ff7706 100644 --- a/src/interface.c +++ b/src/interface.c @@ -49,7 +49,7 @@ #define INTERFACE_LIST_MODE_END "command_list_end" #define INTERFACE_DEFAULT_OUT_BUFFER_SIZE 4096 -int interface_max_connections; +int interface_max_connections = 0; int interface_timeout; unsigned long long interface_max_command_list_size; unsigned long long interface_max_output_buffer_size; @@ -472,6 +472,8 @@ void freeAllInterfaces() { closeAllInterfaces(); free(interfaces); + + interface_max_connections = 0; } void closeOldInterfaces() { |