aboutsummaryrefslogtreecommitdiff
path: root/Readme.md
blob: 8021eee4e458bb578676ccfcddc8a50af6ff85d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# DNS

A simple authorative DNS server implementation in C89.

This is a work-in-progress.

## Building

Build with

```
make build
```

executable is in `build/dnsd`

## Testing

always run `make clean` before and after compiling tests.

### Run all tests

```
make test
```

### Coverage

```
make coverage
```

### Valgrind

Run tests with Valgrind to check for memory leaks
```
make valgrind_test
```

License: MIT