Increase hash table size to allow 128k mapped IPs.

This commit is contained in:
Herbert Wolverson
2024-12-17 10:20:56 -06:00
parent 78943e6589
commit e27a33c733

View File

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