1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

DHCPClient: Rename struct members for InterfaceDescriptor

Public members shouldn't have an "m_" prefix.
This commit is contained in:
Gunnar Beutner 2021-05-26 07:34:37 +02:00 committed by Ali Mohammad Pur
parent 106def9de7
commit e17a5dc2b9
2 changed files with 17 additions and 17 deletions

View file

@ -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 {