diff options
author | Camil Staps | 2016-05-22 22:02:36 +0200 |
---|---|---|
committer | Camil Staps | 2016-05-22 22:02:36 +0200 |
commit | da97de6bc75e9606a536d87d5b3c7b93ba83af12 (patch) | |
tree | 21126eabfec3ba3802b9abba5cdd084928adb530 /project2/proj2_s4498062/dns_server.py | |
parent | Fix resource.py; lint (diff) |
Caching resolver; DOESN'T work. Should remove this.
Diffstat (limited to 'project2/proj2_s4498062/dns_server.py')
-rwxr-xr-x | project2/proj2_s4498062/dns_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/proj2_s4498062/dns_server.py b/project2/proj2_s4498062/dns_server.py index 0fcf981..a518546 100755 --- a/project2/proj2_s4498062/dns_server.py +++ b/project2/proj2_s4498062/dns_server.py @@ -7,6 +7,7 @@ This script contains the code for starting a DNS server. import dns.server + def main(): """Run the server""" # Parse arguments @@ -33,4 +34,3 @@ def main(): if __name__ == "__main__": main() - |