diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-12-02 14:07:34 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-12-02 14:07:34 +0100 |
commit | 1629c3621e02a8e176172f44a72d155030172d35 (patch) | |
tree | f125880354a771c047cfde27d3e9023668acb87e | |
parent | 6a147a95c105fe4884f01accbd3fcd6e571b1b10 (diff) | |
download | dns-1629c3621e02a8e176172f44a72d155030172d35.tar.gz |
Prepare for license
-rw-r--r-- | Readme.md | 5 | ||||
-rw-r--r-- | src/dns.c | 5 | ||||
-rw-r--r-- | src/dns.h | 5 | ||||
-rw-r--r-- | src/log.c | 5 | ||||
-rw-r--r-- | src/log.h | 5 | ||||
-rw-r--r-- | src/main.c | 5 | ||||
-rwxr-xr-x | test/netfuzz.sh (renamed from netfuzz.sh) | 0 |
7 files changed, 30 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..82bbbb6 --- /dev/null +++ b/Readme.md @@ -0,0 +1,5 @@ +# DNS + +A simple authorative DNS server implementation in c + +License: MIT @@ -1,3 +1,8 @@ +/* dns.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include "dns.h" int dns_parse_packet ( char* _buffer, int _bufflen, struct dns_message* _msg ) @@ -1,3 +1,8 @@ +/* dns.h + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #pragma once #include <stdint.h> @@ -1,3 +1,8 @@ +/* log.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include "log.h" const char* log_loglevel_str[5] = { @@ -1,3 +1,8 @@ +/* log.h + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #pragma once #include <stdio.h> @@ -1,3 +1,8 @@ +/* main.c + * (c) Jonas Gunz, 2019 + * License: MIT + * */ + #include <stdio.h> #include <stdlib.h> #include <errno.h> diff --git a/netfuzz.sh b/test/netfuzz.sh index 42a8543..42a8543 100755 --- a/netfuzz.sh +++ b/test/netfuzz.sh |