2014-02-05 16:38:54 -08:00
|
|
|
/*
|
|
|
|
|
* ZeroTier One - Global Peer to Peer Ethernet
|
2014-02-16 12:40:22 -08:00
|
|
|
* Copyright (C) 2011-2014 ZeroTier Networks LLC
|
2014-02-05 16:38:54 -08:00
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
* --
|
|
|
|
|
*
|
|
|
|
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
|
|
|
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
|
*
|
|
|
|
|
* If you would like to embed ZeroTier into a commercial application or
|
|
|
|
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
|
|
|
|
* LLC. Start here: http://www.zerotier.com/
|
|
|
|
|
*/
|
2014-02-05 16:37:50 -08:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "ServiceBase.h"
|
|
|
|
|
|
2014-02-26 14:37:21 -08:00
|
|
|
#include <string>
|
|
|
|
|
|
2014-02-06 23:12:12 -08:00
|
|
|
#include "../../node/Node.hpp"
|
|
|
|
|
#include "../../node/Defaults.hpp"
|
|
|
|
|
#include "../../node/Thread.hpp"
|
|
|
|
|
#include "../../node/Mutex.hpp"
|
|
|
|
|
#include "../../node/Utils.hpp"
|
|
|
|
|
|
2014-02-05 16:37:50 -08:00
|
|
|
#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_PASSWORD NULL
|
|
|
|
|
|
|
|
|
|
class ZeroTierOneService : public CServiceBase
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ZeroTierOneService();
|
|
|
|
|
virtual ~ZeroTierOneService(void);
|
|
|
|
|
|
2014-02-06 22:06:27 -08:00
|
|
|
/**
|
|
|
|
|
* Thread main method; do not call elsewhere
|
|
|
|
|
*/
|
|
|
|
|
void threadMain()
|
|
|
|
|
throw();
|
|
|
|
|
|
2014-02-26 14:37:21 -08:00
|
|
|
// Returns false on failure.
|
|
|
|
|
static bool doStartUpgrade(const std::string &msiPath);
|
|
|
|
|
|
2014-02-05 16:37:50 -08:00
|
|
|
protected:
|
|
|
|
|
virtual void OnStart(DWORD dwArgc, PSTR *pszArgv);
|
|
|
|
|
virtual void OnStop();
|
2014-02-06 22:06:27 -08:00
|
|
|
virtual void OnShutdown();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ZeroTier::Node *volatile _node;
|
2014-02-06 23:12:12 -08:00
|
|
|
ZeroTier::Mutex _lock;
|
|
|
|
|
ZeroTier::Thread _thread;
|
2014-02-05 16:37:50 -08:00
|
|
|
};
|