summaryrefslogtreecommitdiff
path: root/bin/bbstored/bbstored.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bin/bbstored/bbstored.cpp')
-rw-r--r--bin/bbstored/bbstored.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/bin/bbstored/bbstored.cpp b/bin/bbstored/bbstored.cpp
new file mode 100644
index 00000000..21a9e5f1
--- /dev/null
+++ b/bin/bbstored/bbstored.cpp
@@ -0,0 +1,37 @@
+// --------------------------------------------------------------------------
+//
+// File
+// Name: bbstored.cpp
+// Purpose: main file for backup store daemon
+// Created: 2003/08/20
+//
+// --------------------------------------------------------------------------
+
+#include "Box.h"
+#include "BackupStoreDaemon.h"
+#include "MainHelper.h"
+#include "Logging.h"
+
+#include "MemLeakFindOn.h"
+
+int main(int argc, const char *argv[])
+{
+ MAINHELPER_START
+
+ Logging::SetProgramName("bbstored");
+ Logging::ToConsole(true);
+ Logging::ToSyslog (true);
+
+ BackupStoreDaemon daemon;
+
+ #ifdef WIN32
+ return daemon.Main(BOX_GET_DEFAULT_BBACKUPD_CONFIG_FILE,
+ argc, argv);
+ #else
+ return daemon.Main(BOX_FILE_BBSTORED_DEFAULT_CONFIG,
+ argc, argv);
+ #endif
+
+ MAINHELPER_END
+}
+