1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-01 22:34:13 +00:00

* Daemon.h : use boolean variables for flags

This commit is contained in:
hagen 2016-01-19 00:00:00 +00:00
parent 9611f80a39
commit c5f6a690de

View File

@ -21,10 +21,10 @@ namespace i2p
virtual bool start(); virtual bool start();
virtual bool stop(); virtual bool stop();
int isLogging; bool isLogging;
int isDaemon; bool isDaemon;
int running; bool running;
protected: protected:
Daemon_Singleton(); Daemon_Singleton();