-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Process all lists completely before writing them to dnsmasq. Fixes #2
- Loading branch information
1 parent
8b24781
commit 4dafa24
Showing
15 changed files
with
520 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
module github.com/maksimkurb/keenetic-pbr | ||
|
||
go 1.21 | ||
go 1.23.4 | ||
|
||
require github.com/BurntSushi/toml v1.4.0 | ||
|
||
require github.com/vishvananda/netlink v1.3.0 | ||
require ( | ||
github.com/coreos/go-iptables v0.8.0 | ||
github.com/valyala/fasttemplate v1.2.2 | ||
github.com/vishvananda/netlink v1.3.0 | ||
golang.org/x/sys v0.10.0 | ||
) | ||
|
||
require ( | ||
github.com/coreos/go-iptables v0.8.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
github.com/vishvananda/netns v0.0.4 // indirect | ||
golang.org/x/sys v0.10.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.