forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kernel+LibC: Stub out getifaddrs() and freeifaddrs()
These are required for some ports.
- Loading branch information
Showing
4 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2021, Idan Horowitz <[email protected]> | ||
* | ||
* SPDX-License-Identifier: BSD-2-Clause | ||
*/ | ||
|
||
#pragma once | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
struct ifaddrs { | ||
struct ifaddrs* ifa_next; | ||
char* ifa_name; | ||
unsigned int ifa_flags; | ||
struct sockaddr* ifa_addr; | ||
struct sockaddr* ifa_netmask; | ||
union { | ||
struct sockaddr* ifu_broadaddr; | ||
struct sockaddr* ifu_dstaddr; | ||
} ifa_ifu; | ||
#define ifa_broadaddr ifa_ifu.ifu_broadaddr | ||
#define ifa_dstaddr ifa_ifu.ifu_dstaddr | ||
void* ifa_data; | ||
}; | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ set(LIBC_SOURCES | |
fcntl.cpp | ||
fenv.cpp | ||
fnmatch.cpp | ||
ifaddrs.cpp | ||
getopt.cpp | ||
grp.cpp | ||
inttypes.cpp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright (c) 2021, Idan Horowitz <[email protected]> | ||
* | ||
* SPDX-License-Identifier: BSD-2-Clause | ||
*/ | ||
|
||
#include <LibC/errno.h> | ||
#include <LibC/ifaddrs.h> | ||
|
||
int getifaddrs(struct ifaddrs**) | ||
{ | ||
errno = ENOSYS; | ||
return -1; | ||
} | ||
|
||
void freeifaddrs(struct ifaddrs*) | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) 2021, Idan Horowitz <[email protected]> | ||
* | ||
* SPDX-License-Identifier: BSD-2-Clause | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <Kernel/API/POSIX/ifaddrs.h> | ||
#include <sys/cdefs.h> | ||
|
||
__BEGIN_DECLS | ||
|
||
int getifaddrs(struct ifaddrs** ifap); | ||
void freeifaddrs(struct ifaddrs* ifa); | ||
|
||
__END_DECLS |