Commit da0d0ae9 authored by Mans Rullgard's avatar Mans Rullgard

network: add fallbacks for INADDR_LOOPBACK and INET_ADDRSTRLEN

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 3f65eff4
......@@ -188,6 +188,14 @@ const char *ff_gai_strerror(int ecode);
#define gai_strerror ff_gai_strerror
#endif
#ifndef INADDR_LOOPBACK
#define INADDR_LOOPBACK 0x7f000001
#endif
#ifndef INET_ADDRSTRLEN
#define INET_ADDRSTRLEN 16
#endif
#ifndef INET6_ADDRSTRLEN
#define INET6_ADDRSTRLEN INET_ADDRSTRLEN
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment