2017-10-19 05:48:23 +03:00
|
|
|
// SoftEther VPN Source Code - Developer Edition Master Branch
|
2014-01-04 17:00:08 +04:00
|
|
|
// Cedar Communication Module
|
|
|
|
|
|
|
|
|
|
|
|
// vpnbridge.c
|
|
|
|
// VPN Bridge Service Program
|
|
|
|
|
|
|
|
#define VPN_EXE
|
|
|
|
|
2021-04-05 05:48:25 +03:00
|
|
|
#include "Cedar/Server.h"
|
|
|
|
|
|
|
|
#include "Mayaqua/Mayaqua.h"
|
|
|
|
#include "Mayaqua/Microsoft.h"
|
|
|
|
#include "Mayaqua/Unix.h"
|
|
|
|
#include "Mayaqua/Win32.h"
|
2014-01-04 17:00:08 +04:00
|
|
|
|
|
|
|
// Process start function
|
|
|
|
void StartProcess()
|
|
|
|
{
|
|
|
|
// Start the server
|
|
|
|
InitCedar();
|
|
|
|
StInit();
|
|
|
|
StStartServer(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process stop function
|
|
|
|
void StopProcess()
|
|
|
|
{
|
|
|
|
// Stop the server
|
|
|
|
StStopServer();
|
|
|
|
StFree();
|
|
|
|
FreeCedar();
|
|
|
|
}
|
|
|
|
|
|
|
|
// WinMain function
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2018-04-22 12:21:19 +03:00
|
|
|
InitProcessCallOnce();
|
|
|
|
|
2014-01-04 17:00:08 +04:00
|
|
|
#ifdef OS_WIN32
|
|
|
|
return MsService(GC_SVC_NAME_VPNBRIDGE, StartProcess, StopProcess, ICO_BRIDGE, argv[0]);
|
|
|
|
#else // OS_WIN32
|
2017-10-19 09:24:51 +03:00
|
|
|
return UnixService(argc, argv, "vpnbridge", StartProcess, StopProcess);
|
2014-01-04 17:00:08 +04:00
|
|
|
#endif // OS_WIN32
|
|
|
|
}
|
|
|
|
|
|
|
|
|