Mercurial > hg > anonet-resdb
view contrib/tor2dns/serve @ 1231:1a40a96b903a draft
Merge git://21.41.41.1.ip4.ano/resdb
author | Ivo Smits <Ivo@UCIS.nl> |
---|---|
date | Thu, 11 Jul 2019 00:10:22 +0200 |
parents | 5c86c4e82b4c |
children |
line wrap: on
line source
#!/usr/bin/python import SimpleHTTPServer import SocketServer PORT = 8053 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) httpd.serve_forever()