diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-05-26 07:34:37 +0200 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-05-27 15:53:49 +0430 |
commit | e17a5dc2b93d9127a2d388345e79a0ccbae7f85f (patch) | |
tree | 388c4cfcac3b44b34dd211026d5bf591e355fc7c /Userland/Services/DHCPClient/DHCPv4Client.h | |
parent | 106def9de793d18d9c3fccdaf30b1631021f1a22 (diff) | |
download | serenity-e17a5dc2b93d9127a2d388345e79a0ccbae7f85f.zip |
DHCPClient: Rename struct members for InterfaceDescriptor
Public members shouldn't have an "m_" prefix.
Diffstat (limited to 'Userland/Services/DHCPClient/DHCPv4Client.h')
-rw-r--r-- | Userland/Services/DHCPClient/DHCPv4Client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Services/DHCPClient/DHCPv4Client.h b/Userland/Services/DHCPClient/DHCPv4Client.h index 72af9d2d33..c3901ab713 100644 --- a/Userland/Services/DHCPClient/DHCPv4Client.h +++ b/Userland/Services/DHCPClient/DHCPv4Client.h @@ -19,9 +19,9 @@ #include <sys/socket.h> struct InterfaceDescriptor { - String m_ifname; - MACAddress m_mac_address; - IPv4Address m_current_ip_address; + String ifname; + MACAddress mac_address; + IPv4Address current_ip_address; }; struct DHCPv4Transaction { |