Changeset 76576 in vbox for trunk/src/VBox/NetworkServices/Dhcpd
- Timestamp:
- Jan 1, 2019 6:05:25 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127878
- Location:
- trunk/src/VBox/NetworkServices/Dhcpd
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/Dhcpd/ClientId.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCPD_CLIENT_ID_H_19 #define _DHCPD_CLIENT_ID_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_ClientId_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_ClientId_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 68 68 } 69 69 70 #endif /* _DHCPD_CLIENT_ID_H_*/70 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_ClientId_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/Config.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCPD_CONFIG_H_19 #define _DHCPD_CONFIG_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_Config_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_Config_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 108 108 }; 109 109 110 #endif /* _DHCPD_CONFIG_H_*/110 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_Config_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/DHCPD.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCPD_DHCPD_H_19 #define _DHCPD_DHCPD_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_DHCPD_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_DHCPD_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 63 63 }; 64 64 65 #endif /* _DHCPD_DHCPD_H_*/65 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_DHCPD_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/Db.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCPD_DB_H_19 #define _DHCPD_DB_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_Db_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_Db_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 160 160 }; 161 161 162 #endif /* _DHCPD_DB_H_*/162 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_Db_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/Defs.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCPD_DEFS_H_19 #define _DHCPD_DEFS_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_Defs_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_Defs_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 60 60 #endif 61 61 62 #endif /* _DHCPD_DEFS_H_*/62 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_Defs_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/DhcpMessage.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCP_MESSAGE_H_19 #define _DHCP_MESSAGE_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_DhcpMessage_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_DhcpMessage_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 136 136 }; 137 137 138 #endif /* _DHCP_MESSAGE_H_*/138 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_DhcpMessage_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/DhcpOptions.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCP_OPTIONS_H_19 #define _DHCP_OPTIONS_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_DhcpOptions_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_DhcpOptions_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 640 640 typedef OptNoValue<80> OptRapidCommit; /* RFC4039 */ 641 641 642 #endif /* _DHCP_OPTIONS_H_*/642 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_DhcpOptions_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/IPv4Pool.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCPD_IPV4_POOL_H_19 #define _DHCPD_IPV4_POOL_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_IPv4Pool_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_IPv4Pool_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 124 124 }; 125 125 126 #endif /* _DHCPD_IPV4_POOL_H_*/126 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_IPv4Pool_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/TimeStamp.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _DHCPD_TIMESTAMP_H_19 #define _DHCPD_TIMESTAMP_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_TimeStamp_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_TimeStamp_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 99 99 inline bool operator>=(const TimeStamp &l, const TimeStamp &r) { return l.m_ns >= r.m_ns; } 100 100 101 #endif /* _DHCPD_TIMESTAMP_H_*/101 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_TimeStamp_h */ -
trunk/src/VBox/NetworkServices/Dhcpd/lwipopts.h
r76553 r76576 16 16 */ 17 17 18 #ifndef _VBOX_DHCPD_LWIP_OPTS_H_19 #define _VBOX_DHCPD_LWIP_OPTS_H_18 #ifndef VBOX_INCLUDED_SRC_Dhcpd_lwipopts_h 19 #define VBOX_INCLUDED_SRC_Dhcpd_lwipopts_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 179 179 #endif 180 180 181 #endif /* _VBOX_DHCPD_LWIP_OPTS_H_*/181 #endif /* !VBOX_INCLUDED_SRC_Dhcpd_lwipopts_h */
Note:
See TracChangeset
for help on using the changeset viewer.