aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2017-01-26 13:58:27 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2017-01-26 17:51:35 +0900
commit7dd0650d3374ab4c944f640c485c6045223422d9 (patch)
treec28fcca0c9bbf38a0696d7661f1b634a4192de5c /include
parentadb94725aef9239eb26b7b9fbd8248363a20a33d (diff)
downloadportable-7dd0650d3374ab4c944f640c485c6045223422d9.tar.gz
portable-7dd0650d3374ab4c944f640c485c6045223422d9.tar.bz2
portable-7dd0650d3374ab4c944f640c485c6045223422d9.zip
Add inet_ntop and memmem for ocspcheck
Diffstat (limited to 'include')
-rw-r--r--include/compat/arpa/inet.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/compat/arpa/inet.h b/include/compat/arpa/inet.h
index 0cea8c4..f14ffde 100644
--- a/include/compat/arpa/inet.h
+++ b/include/compat/arpa/inet.h
@@ -14,6 +14,10 @@
14 14
15#endif 15#endif
16 16
17#ifndef HAVE_INET_NTOP
18const char * inet_ntop(int af, const void *src, char *dst, socklen_t size);
19#endif
20
17#ifndef HAVE_INET_PTON 21#ifndef HAVE_INET_PTON
18int inet_pton(int af, const char * src, void * dst); 22int inet_pton(int af, const char * src, void * dst);
19#endif 23#endif