blob: f193f449e7b1a1f258ae5661ed3bc270f38f909d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* main.c
* (c) Jonas Gunz, 2019
* License: MIT
* */
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include "log.h"
int main(int argc, char* argv[])
{
//CMD line arg parsing goes in here
#ifdef _TEST
run_test();
#else
run_dns_server();
#endif
}
|