* Paul Vixie, 1996.
*/
int
-inet_pton(af, src, dst)
- int af;
- const char *src;
- void *dst;
+inet_pton(int af, const char *src, void *dst)
{
switch (af) {
case AF_INET:
* Paul Vixie, 1996.
*/
static int
-inet_pton4(src, dst)
- const char *src;
- uint8_t *dst;
+inet_pton4(const char *src, uint8_t *dst)
{
static const char digits[] = "0123456789";
int saw_digit, octets, ch;
* Paul Vixie, 1996.
*/
static int
-inet_pton6(src, dst)
- const char *src;
- uint8_t *dst;
+inet_pton6(const char *src, uint8_t *dst)
{
static const char xdigits_l[] = "0123456789abcdef",
xdigits_u[] = "0123456789ABCDEF";
10 June 2026: Wouter
- Fix pythonmod script read for numeric overflow.
+ - Fix warnings with gcc in compat/inet_pton.c.
9 June 2026: Wouter
- Fix unit test for ecs to check for malloc success.