You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Michal Charemza 71cb04b337
(build) Run tests in Circle CI
5 years ago
.circleci (build) Run tests in Circle CI 5 years ago
.gitignore Initial commit 5 years ago
.pre-commit-config.yaml (feat) Initial behaviour 5 years ago
LICENSE Initial commit 5 years ago
README.md (feat) Initial behaviour 5 years ago
dnsrewriteproxy.py (feat) Initial behaviour 5 years ago
setup.py (feat) Initial behaviour 5 years ago
test.py (feat) Initial behaviour 5 years ago

README.md

dns-rewrite-proxy

A DNS proxy server that conditionally rewrites and filters A record requests

Usage

from dnsrewriteproxy import DnsProxy

start = DnsProxy()

# Proxy is running, accepting UDP requests on port 53
stop = await start()

# Stopped
await stop()