70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
/*
|
|
* Copyright (c)2019 ZeroTier, Inc.
|
|
*
|
|
* Use of this software is governed by the Business Source License included
|
|
* in the LICENSE.TXT file in the project's root directory.
|
|
*
|
|
* Change Date: 2023-01-01
|
|
*
|
|
* On the date above, in accordance with the Business Source License, use
|
|
* of this software will be governed by version 2.0 of the Apache License.
|
|
*/
|
|
/****/
|
|
|
|
#pragma once
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "ServiceBase.h"
|
|
|
|
#include <string>
|
|
|
|
#include "../../node/Mutex.hpp"
|
|
#include "../../osdep/Thread.hpp"
|
|
#include "../../service/OneService.hpp"
|
|
|
|
// Uncomment to make debugging Windows services suck slightly less hard.
|
|
//#define ZT_DEBUG_SERVICE "C:\\ZeroTierOneServiceDebugLog.txt"
|
|
|
|
#ifdef ZT_DEBUG_SERVICE
|
|
extern FILE *SVCDBGfile;
|
|
extern ZeroTier::Mutex SVCDBGfile_m;
|
|
#define ZT_SVCDBG(f,...) { SVCDBGfile_m.lock(); fprintf(SVCDBGfile,f,##__VA_ARGS__); fflush(SVCDBGfile); SVCDBGfile_m.unlock(); }
|
|
#else
|
|
#define ZT_SVCDBG(f,...) {}
|
|
#endif
|
|
|
|
#define ZT_SERVICE_NAME "ZeroTierOneService"
|
|
#define ZT_SERVICE_DISPLAY_NAME "ZeroTier One"
|
|
#define ZT_SERVICE_START_TYPE SERVICE_AUTO_START
|
|
#define ZT_SERVICE_DEPENDENCIES ""
|
|
//#define ZT_SERVICE_ACCOUNT "NT AUTHORITY\\LocalService"
|
|
#define ZT_SERVICE_ACCOUNT NULL
|
|
#define ZT_SERVICE_PASSWORD NULL
|
|
|
|
class ZeroTierOneService : public CServiceBase
|
|
{
|
|
public:
|
|
ZeroTierOneService();
|
|
virtual ~ZeroTierOneService(void);
|
|
|
|
/**
|
|
* Thread main method; do not call elsewhere
|
|
*/
|
|
void threadMain()
|
|
throw();
|
|
|
|
protected:
|
|
virtual void OnStart(DWORD dwArgc, PSTR *pszArgv);
|
|
virtual void OnStop();
|
|
virtual void OnShutdown();
|
|
|
|
private:
|
|
ZeroTier::OneService *volatile _service;
|
|
ZeroTier::Mutex _lock;
|
|
ZeroTier::Thread _thread;
|
|
};
|
|
|
|
#endif
|