Browse Source

* Daemon.h : use boolean variables for flags

pull/326/head
hagen 9 years ago
parent
commit
c5f6a690de
  1. 6
      Daemon.h

6
Daemon.h

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

Loading…
Cancel
Save