https://github.com/git/git
Raw File
Tip revision: b28aeab4ec1df28f3be3cb62ff4b85e5332d8d13 authored by Junio C Hamano on 09 May 2014, 18:23:25 UTC
Git 2.0-rc3
Tip revision: b28aeab
hstrerror.c
#include <string.h>
#include <stdio.h>
#include <netdb.h>

const char *githstrerror(int err)
{
	static char buffer[48];
	switch (err)
	{
	case HOST_NOT_FOUND:
		return "Authoritative answer: host not found";
	case NO_DATA:
		return "Valid name, no data record of requested type";
	case NO_RECOVERY:
		return "Non recoverable errors, FORMERR, REFUSED, NOTIMP";
	case TRY_AGAIN:
		return "Non-authoritative \"host not found\", or SERVERFAIL";
	}
	sprintf(buffer, "Name resolution error %d", err);
	return buffer;
}
back to top