mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 05:48:12 +00:00
LibC: move in_addr and sockaddr_in to netinet/in.h
This commit is contained in:
parent
93e1728818
commit
f22322a06c
2 changed files with 11 additions and 11 deletions
|
@ -13,4 +13,15 @@ in_addr_t inet_addr(const char*);
|
|||
|
||||
#define IP_TTL 2
|
||||
|
||||
struct in_addr {
|
||||
uint32_t s_addr;
|
||||
};
|
||||
|
||||
struct sockaddr_in {
|
||||
uint16_t sin_family;
|
||||
uint16_t sin_port;
|
||||
struct in_addr sin_addr;
|
||||
char sin_zero[8];
|
||||
};
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue