summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/netinet
AgeCommit message (Collapse)Author
2021-08-03LibC: Add definition for 'struct ip' in netinet/ip.hThomas Wagenveld
The definition is equal to the one defined by the BSDs.
2021-05-09LibC: Add definitions/stubs for IPv6 functionalityGunnar Beutner
This lets us build some of the ports without patching out any of their IPv6 stuff.
2021-05-05Kernel: Implement IP multicast supportSergey Bugaev
An IP socket can now join a multicast group by using the IP_ADD_MEMBERSHIP sockopt, which will cause it to start receiving packets sent to the multicast address, even though this address does not belong to this host.
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-18LibC: Add netinet/in_systm.hHendiadyoin1
2021-03-04Everywhere: Remove unnecessary `clang-format off`sWilliam McPherson
Mostly due to the fact that clang-format allows aligned comments via AlignTrailingComments. We could also use raw string literals in inline asm, which clang-format deals with properly (and would be nicer in a lot of places).
2021-02-15LibC: Fix typo in commentBen Wiederhake
2021-02-08LibC: Define ICMP header type constants in netinet/ip_icmp.hLinus Groh
Let's get rid of some magic numbers soon. :^)
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling