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 <waddlesplash@gmail.com>
This commit is contained in:
Augustin Cavalier 2020-06-21 18:08:36 -04:00 committed by waddlesplash
parent 13b45a2ea3
commit 17dab0d52b
1 changed files with 1 additions and 5 deletions

View File

@ -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,