Skip to content

Commit

Permalink
fix padding help message, version compatibility notes (#5)
Browse files Browse the repository at this point in the history
* fix padding help message

* improved help line, version compatibility notes
  • Loading branch information
fardog authored Jan 31, 2017
1 parent b3d4fd5 commit f817b8a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ to use one of the stable releases, use its version tag when pulling, e.g.:
docker pull fardog/secureoperator:v1.0.3
```

## Version Compatibility

This package follows [semver][] for its tagged releases. The `master` branch is
always considered stable, but may break API compatibility. If you require API
stability, either use the tagged releases or mirror on gopkg.in:

```
go get -u gopkg.in/fardog/secureoperator.v1
```

## Security

Note that while DNS requests are made over HTTPS, this does not imply "secure";
Expand Down Expand Up @@ -87,3 +97,4 @@ This owes heavily to the following work:
[releases]: https://github.com/fardog/secureoperator/releases
[docker]: https://www.docker.com/
[issues]: https://github.com/fardog/secureoperator/issues
[semver]: http://semver.org/
2 changes: 1 addition & 1 deletion cmd/secure-operator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var (
pad = flag.Bool(
"pad",
true,
"Randomly pad requests to vary request length",
"Pad Google DNS-over-HTTPS requests to identical length",
)

logLevel = flag.String(
Expand Down

0 comments on commit f817b8a

Please sign in to comment.