summaryrefslogtreecommitdiff
path: root/Userland/Services/DHCPClient/DHCPv4Client.h
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-26 07:34:37 +0200
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-05-27 15:53:49 +0430
commite17a5dc2b93d9127a2d388345e79a0ccbae7f85f (patch)
tree388c4cfcac3b44b34dd211026d5bf591e355fc7c /Userland/Services/DHCPClient/DHCPv4Client.h
parent106def9de793d18d9c3fccdaf30b1631021f1a22 (diff)
downloadserenity-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.h6
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 {