From 17dab0d52b81869bc2999c2d203ce2645f975d6a Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sun, 21 Jun 2020 18:08:36 -0400 Subject: [PATCH] inet.h: Remove "cidr" functions. These are not in the standard and are not declared by glibc at all. The symbols remain for any applications that are still using them, for now.\ Change-Id: Ie6b4a6b5ec3231c304e05ce9cb38c67d9ee51ad7 Reviewed-on: https://review.haiku-os.org/c/haiku/+/2942 Reviewed-by: waddlesplash --- headers/posix/arpa/inet.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/headers/posix/arpa/inet.h b/headers/posix/arpa/inet.h index b69b148662..f14b028431 100644 --- a/headers/posix/arpa/inet.h +++ b/headers/posix/arpa/inet.h @@ -1,5 +1,5 @@ /* - * Copyright 2009-2012 Haiku, Inc. All Rights Reserved. + * Copyright 2009-2020 Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. */ #ifndef _INET_H_ @@ -18,10 +18,6 @@ extern "C" { in_addr_t inet_addr(const char* addressString); int inet_aton(const char* addressString, struct in_addr* address); -char* inet_cidr_ntop(int family, const void* source, int bits, - char* dest, size_t destSize); -int inet_cidr_pton(int family, const char* sourceString, void* dest, - int* _bits); in_addr_t inet_lnaof(struct in_addr address); struct in_addr inet_makeaddr(in_addr_t net, in_addr_t host); char* inet_net_ntop(int family, const void* source, int bits,