Reduce default maximum tracked hosts to 64k from 128k

This commit is contained in:
Herbert Wolverson 2023-04-19 21:29:15 +00:00
parent 92db07b449
commit c7ca4b171d

View File

@ -1,10 +1,10 @@
#pragma once #pragma once
// Maximum number of client IPs we are tracking // Maximum number of client IPs we are tracking
#define MAX_TRACKED_IPS 128000 #define MAX_TRACKED_IPS 64000
// Maximum number of TC class mappings to support // Maximum number of TC class mappings to support
#define IP_HASH_ENTRIES_MAX 128000 #define IP_HASH_ENTRIES_MAX 64000
// Maximum number of supported CPUs // Maximum number of supported CPUs
#define MAX_CPUS 1024 #define MAX_CPUS 1024