DHCPServerRunner.h revision f6b7b6d2dcdb1fdc4d01e32baf9d504af2946597
/* $Id$ */
/** @file
* VirtualBox Main - interface for VBox DHCP server
*/
/*
* Copyright (C) 2009-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#include <iprt/err.h>
#include <iprt/types.h>
#include <iprt/string.h>
#include <iprt/mem.h>
#include <VBox/com/string.h>
typedef enum
{
DHCPCFG_NAME = 1,
DHCPCFG_NETNAME,
DHCPCFG_TRUNKTYPE,
DHCPCFG_TRUNKNAME,
DHCPCFG_MACADDRESS,
DHCPCFG_IPADDRESS,
DHCPCFG_LEASEDB,
DHCPCFG_VERBOSE,
DHCPCFG_GATEWAY,
DHCPCFG_LOWERIP,
DHCPCFG_UPPERIP,
DHCPCFG_NETMASK,
DHCPCFG_HELP,
DHCPCFG_VERSION,
DHCPCFG_BEGINCONFIG,
DHCPCFG_NOTOPT_MAXVAL
}DHCPCFG;
#define TRUNKTYPE_WHATEVER "whatever"
#define TRUNKTYPE_NETFLT "netflt"
#define TRUNKTYPE_NETADP "netadp"
#define TRUNKTYPE_SRVNAT "srvnat"
class DHCPServerRunner
{
public:
DHCPServerRunner();
~DHCPServerRunner() { stop(); /* don't leave abandoned servers */}
int setOption(DHCPCFG opt, const char *val, bool enabled)
{
if (opt == 0 || opt >= DHCPCFG_NOTOPT_MAXVAL)
return VERR_INVALID_PARAMETER;
if (isRunning())
return VERR_INVALID_STATE;
mOptions[opt] = val;
mOptionEnabled[opt] = enabled;
return VINF_SUCCESS;
}
int setOption(DHCPCFG opt, const com::Utf8Str &val, bool enabled)
{
return setOption(opt, val.c_str(), enabled);
}
int start();
int stop();
bool isRunning();
void detachFromServer();
private:
com::Utf8Str mOptions[DHCPCFG_NOTOPT_MAXVAL];
bool mOptionEnabled[DHCPCFG_NOTOPT_MAXVAL];
RTPROCESS mProcess;
};