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:
parent
106def9de7
commit
e17a5dc2b9
2 changed files with 17 additions and 17 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue