Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-12 | LibC: Add herror() and hstrerror() | Michał Lach | |
2022-05-12 | LibC: Make h_errno thread-local | Michał Lach | |
2022-04-21 | LibC: Make nameinfo (NI_*) constants bitfield-friendly | Andreas Kling | |
These are supposed to be used as flags in a bitfield, so let's make them powers of two. | |||
2022-04-01 | Everywhere: Run clang-format | Idan Horowitz | |
2022-01-08 | LibC+LibDl: Declare functions taking no arguments as taking void | Daniel Bertalan | |
In C++, a function declaration with an empty parameter list means that the function takes no arguments. In C, however, it means that the function takes an unspecified number of parameters. What we did previously was therefore non-conforming. This caused a config check to fail in the curl port, as it was able to redeclare `rand` as taking an int parameter. | |||
2021-12-05 | LibC: Stub out the rest of the getnameinfo flags | Idan Horowitz | |
These are required for the compilation of some ports. | |||
2021-04-22 | Everything: 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-14 | LibC: Add definition for the NI_NAMEREQD macro | Gunnar Beutner | |
2021-04-12 | LibC: Implement getaddrinfo(), freeaddrinfo(), gai_strerror() and getnameinfo() | Gunnar Beutner | |
2021-04-04 | LibC: Add NI_MAXHOST and NI_MAXSERV constants | Jelle Raaijmakers | |
These are not POSIX-defined but are almost always present in <netdb.h>. | |||
2021-03-27 | LibC: Add POSIX macros for the ai_flags field in struct addrinfo | Andreas Kling | |
2021-02-15 | LibC: Stub out some addrinfo things | AnotherTest | |
2021-01-12 | Libraries: Move to Userland/Libraries/ | Andreas Kling | |