1 | /* $Id: DHCPD.h 76576 2019-01-01 06:05:25Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * DHCP server - protocol logic
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2017-2019 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef VBOX_INCLUDED_SRC_Dhcpd_DHCPD_h
|
---|
19 | #define VBOX_INCLUDED_SRC_Dhcpd_DHCPD_h
|
---|
20 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
21 | # pragma once
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | #include "Defs.h"
|
---|
25 | #include "Config.h"
|
---|
26 | #include "DhcpMessage.h"
|
---|
27 | #include "Db.h"
|
---|
28 |
|
---|
29 |
|
---|
30 | class DHCPD
|
---|
31 | {
|
---|
32 | const Config *m_pConfig;
|
---|
33 | std::string m_strLeasesFileName;
|
---|
34 | Db m_db;
|
---|
35 |
|
---|
36 | public:
|
---|
37 | DHCPD();
|
---|
38 |
|
---|
39 | int init(const Config *);
|
---|
40 |
|
---|
41 | DhcpServerMessage *process(const std::unique_ptr<DhcpClientMessage> &req)
|
---|
42 | {
|
---|
43 | if (req.get() == NULL)
|
---|
44 | return NULL;
|
---|
45 |
|
---|
46 | return process(*req.get());
|
---|
47 | }
|
---|
48 |
|
---|
49 | DhcpServerMessage *process(DhcpClientMessage &req);
|
---|
50 |
|
---|
51 | private:
|
---|
52 | DhcpServerMessage *doDiscover(DhcpClientMessage &req);
|
---|
53 | DhcpServerMessage *doRequest(DhcpClientMessage &req);
|
---|
54 | DhcpServerMessage *doInform(DhcpClientMessage &req);
|
---|
55 |
|
---|
56 | DhcpServerMessage *doDecline(DhcpClientMessage &req);
|
---|
57 | DhcpServerMessage *doRelease(DhcpClientMessage &req);
|
---|
58 |
|
---|
59 | DhcpServerMessage *createMessage(int type, DhcpClientMessage &req);
|
---|
60 |
|
---|
61 | void loadLeases();
|
---|
62 | void saveLeases();
|
---|
63 | };
|
---|
64 |
|
---|
65 | #endif /* !VBOX_INCLUDED_SRC_Dhcpd_DHCPD_h */
|
---|