blob: ad6b253a65dd17bac275bbfb62b323046f9cb492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <unistd.h>
#include "buffer.h"
#include "exit.h"
#include "dnsresolv.h"
#include "dns.h"
void dnsdoe(int r)
{
switch (r) {
case DNS_HARD: buffer_putsflush(buffer_2,"hard error\n"); _exit(100);
case DNS_SOFT: buffer_putsflush(buffer_2,"soft error\n"); _exit(111);
case DNS_MEM: buffer_putsflush(buffer_2,"out of memory\n"); _exit(111);
}
}
|