Add inet_ntop and memmem for ocspcheck

This commit is contained in:
kinichiro
2017-01-26 13:58:27 +09:00
parent adb94725ae
commit 7dd0650d33
8 changed files with 300 additions and 2 deletions

View File

@@ -14,6 +14,10 @@
#endif
#ifndef HAVE_INET_NTOP
const char * inet_ntop(int af, const void *src, char *dst, socklen_t size);
#endif
#ifndef HAVE_INET_PTON
int inet_pton(int af, const char * src, void * dst);
#endif