diff options
| author | Stefan Boberg <[email protected]> | 2023-01-26 09:56:08 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-01-26 09:56:52 +0100 |
| commit | c3b906dec4589d0b06f4387dce26dd79a988c269 (patch) | |
| tree | 96e3947b7f76e3b255b21c2f70831ce121191492 /zenserver/config.h | |
| parent | fix gc logging (#213) (diff) | |
| download | zen-c3b906dec4589d0b06f4387dce26dd79a988c269.tar.xz zen-c3b906dec4589d0b06f4387dce26dd79a988c269.zip | |
removed experimental mesh code
should be replaced with a proper implementation later
Diffstat (limited to 'zenserver/config.h')
| -rw-r--r-- | zenserver/config.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/zenserver/config.h b/zenserver/config.h index 4cdef0318..096a800b4 100644 --- a/zenserver/config.h +++ b/zenserver/config.h @@ -7,10 +7,6 @@ #include <string> #include <vector> -#ifndef ZEN_ENABLE_MESH -# define ZEN_ENABLE_MESH 0 -#endif - struct ZenUpstreamJupiterConfig { std::string Name; @@ -144,9 +140,6 @@ struct ZenServerOptions std::string TraceHost; // Host name or IP address to send trace data to std::string TraceFile; // Path of a file to write a trace #endif -#if ZEN_ENABLE_MESH - bool MeshEnabled = false; // Experimental p2p mesh discovery -#endif }; void ParseCliOptions(int argc, char* argv[], ZenServerOptions& ServerOptions); |