https://github.com/git/git
Raw File
Tip revision: 7d3ccdffb5d28970dd7a4d177cfcca690ccd0c22 authored by Junio C Hamano on 03 May 2013, 22:23:45 UTC
Git 1.8.3-rc1
Tip revision: 7d3ccdf
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