1 | /* $Id: ClientId.h 70836 2018-01-31 14:55:44Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * DHCP server - client identifier
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2017-2018 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 _DHCPD_CLIENT_ID_H_
|
---|
19 | #define _DHCPD_CLIENT_ID_H_
|
---|
20 |
|
---|
21 | #include "Defs.h"
|
---|
22 | #include <iprt/net.h>
|
---|
23 | #include "DhcpOptions.h"
|
---|
24 |
|
---|
25 | /*
|
---|
26 | * Client is identified by either the Client ID option it sends or its
|
---|
27 | * chaddr, i.e. MAC address.
|
---|
28 | */
|
---|
29 | class ClientId
|
---|
30 | {
|
---|
31 | RTMAC m_mac;
|
---|
32 | OptClientId m_id;
|
---|
33 |
|
---|
34 | public:
|
---|
35 | ClientId()
|
---|
36 | : m_mac(), m_id() {}
|
---|
37 | ClientId(const RTMAC &mac, const OptClientId &id)
|
---|
38 | : m_mac(mac), m_id(id) {}
|
---|
39 |
|
---|
40 | const RTMAC &mac() const { return m_mac; }
|
---|
41 | const OptClientId &id() const { return m_id; }
|
---|
42 |
|
---|
43 | public:
|
---|
44 | static void registerFormat(); /* %R[id] */
|
---|
45 |
|
---|
46 | private:
|
---|
47 | static bool g_fFormatRegistered;
|
---|
48 | static DECLCALLBACK(size_t) rtStrFormat(
|
---|
49 | PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
|
---|
50 | const char *pszType, void const *pvValue,
|
---|
51 | int cchWidth, int cchPrecision, unsigned fFlags,
|
---|
52 | void *pvUser);
|
---|
53 |
|
---|
54 | private:
|
---|
55 | friend bool operator==(const ClientId &l, const ClientId &r);
|
---|
56 | friend bool operator<(const ClientId &l, const ClientId &r);
|
---|
57 | };
|
---|
58 |
|
---|
59 | bool operator==(const ClientId &l, const ClientId &r);
|
---|
60 | bool operator<(const ClientId &l, const ClientId &r);
|
---|
61 |
|
---|
62 | inline bool operator!=(const ClientId &l, const ClientId &r)
|
---|
63 | {
|
---|
64 | return !(l == r);
|
---|
65 | }
|
---|
66 |
|
---|
67 | #endif /* _DHCPD_CLIENT_ID_H_ */
|
---|