diff options
Diffstat (limited to 'zenserver/config.h')
| -rw-r--r-- | zenserver/config.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/zenserver/config.h b/zenserver/config.h index ce059bdb2..75c19d690 100644 --- a/zenserver/config.h +++ b/zenserver/config.h @@ -56,10 +56,11 @@ struct ZenUpstreamCacheConfig struct ZenServiceConfig { - bool StructuredCacheEnabled = true; - bool ShouldCrash = false; // Option for testing crash handling - bool MeshEnabled = false; // Experimental p2p mesh discovery - std::string FlockId; // Id for grouping test instances into sets + bool StructuredCacheEnabled = true; + bool ShouldCrash = false; // Option for testing crash handling +#if ZEN_ENABLE_MESH + bool MeshEnabled = false; // Experimental p2p mesh discovery +#endif ZenUpstreamCacheConfig UpstreamCacheConfig; }; |