From 04a2b04b9841b8b9e3726c522829a8da38f4ad8d Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 8 Feb 2010 18:48:12 +0000 Subject: Implement gai_strerror() for systems lacking such functionality. Patch by KO Myung-Hun . Originally committed as revision 21692 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/os_support.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'libavformat/os_support.c') diff --git a/libavformat/os_support.c b/libavformat/os_support.c index 58215ec198..fd6af3368a 100644 --- a/libavformat/os_support.c +++ b/libavformat/os_support.c @@ -203,6 +203,17 @@ int ff_getnameinfo(const struct sockaddr *sa, int salen, return 0; } + +const char *ff_gai_strerror(int ecode) +{ + switch(ecode) { + case EAI_FAIL : return "A non-recoverable error occurred"; + case EAI_FAMILY : return "The address family was not recognized or the address length was invalid for the specified family"; + case EAI_NONAME : return "The name does not resolve for the supplied parameters"; + } + + return "Unknown error"; +} #endif /* resolve host with also IP address parsing */ -- cgit v1.2.3