You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gdns/README.md

28 lines
427 B
Markdown

9 years ago
# gdns
a dns proxy server write by go
9 years ago
Features
========
support tcp, udp, tls, DoH(dns over https/http2)
9 years ago
Usage
9 years ago
=======
9 years ago
```bash
go get github.com/fangdingjun/gdns
cp $GOPATH/src/github.com/fangdingjun/gdns/config_example.yaml config.yaml
vim config.yaml
$GOPATH/bin/gdns -c config.yaml -log_level DEBUG
9 years ago
```
Third-part library
==================
use
[dns](https://github.com/miekg/dns)
library to parse the dns message
4 years ago