i2pd/i2pd.cpp

13 lines
183 B
C++
Raw Normal View History

2014-06-11 10:01:13 +02:00
#include <stdlib.h>
2014-04-20 03:54:34 +02:00
#include "Daemon.h"
2014-02-05 01:28:18 +01:00
2014-01-30 01:56:48 +01:00
int main( int argc, char* argv[] )
2013-12-10 14:05:42 +01:00
{
2014-12-10 18:10:07 +01:00
Daemon.init(argc, argv);
if (Daemon.start())
2016-03-08 21:02:32 +01:00
Daemon.run ();
2014-12-10 18:10:07 +01:00
Daemon.stop();
return EXIT_SUCCESS;
2013-12-10 14:05:42 +01:00
}
2015-11-03 15:15:49 +01:00