This repository was archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnetdb_checked.h
45 lines (34 loc) · 1.69 KB
/
netdb_checked.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//---------------------------------------------------------------------//
// Bounds-safe interfaces for functions in netdb.h that //
// take pointer arguments. //
// //
/////////////////////////////////////////////////////////////////////////
// The Windows environment may not have netdb.h
#if defined __has_include_next && __has_include_next(<netdb.h>)
#ifdef __checkedc
#pragma CHECKED_SCOPE push
#pragma CHECKED_SCOPE off
#endif
#include_next <netdb.h>
#ifdef __checkedc
#pragma CHECKED_SCOPE pop
#endif
#ifdef __checkedc
#ifndef __NETDB_CHECKED_H
#define __NETDB_CHECKED_H
#pragma CHECKED_SCOPE push
#pragma CHECKED_SCOPE on
extern struct hostent *gethostbyname(const char *name : itype(_Nt_array_ptr<const char>)) : itype(_Ptr<struct hostent>);
extern struct hostent *gethostbyaddr(const void *addr : byte_count(len), socklen_t len, int type) : itype(_Ptr<struct hostent>);
int getaddrinfo(const char *restrict node : itype(_Nt_array_ptr<const char> restrict),
const char *restrict service : itype(_Nt_array_ptr<const char> restrict),
const struct addrinfo *restrict hints : itype(_Ptr<const struct addrinfo> restrict),
struct addrinfo **restrict res : itype(_Ptr<_Ptr<struct addrinfo>> restrict));
void freeaddrinfo(struct addrinfo *res : itype(_Ptr<struct addrinfo>));
const char *gai_strerror(int errcode) : itype(_Nt_array_ptr<const char>);
#pragma CHECKED_SCOPE pop
#endif // guard
#endif // Checked C
#else // doesn't have netdb.h
#error "cannot include 'netdb_checked.h' because this system does not have the original 'netdb.h'"
#endif