mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:27:44 +00:00
LibC: Add struct ifconf in net/if.h
This fixes building the scummvm port.
This commit is contained in:
parent
b2ec579e98
commit
a1518e870d
1 changed files with 8 additions and 0 deletions
|
@ -46,6 +46,14 @@ struct ifreq {
|
|||
#define ifr_hwaddr ifr_ifru.ifru_hwaddr // MAC address
|
||||
};
|
||||
|
||||
struct ifconf {
|
||||
int ifc_len;
|
||||
union {
|
||||
void* ifc_buf;
|
||||
struct ifreq* ifc_req;
|
||||
};
|
||||
};
|
||||
|
||||
unsigned int if_nametoindex(const char* ifname);
|
||||
char* if_indextoname(unsigned int ifindex, char* ifname);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue