github xvzc/SpoofDPI v1.2.1

24 days ago

Changelog

Other


⚠️ BREAKING CHANGE: Refactored Policy Matching

The configuration structure for policy matching has changed to allow multiple domains and
address ranges within a single rule. Users defining policies in config.toml must update their
configuration.

Changes:

  • The domain field now accepts an array of strings.
  • The cidr and port fields have been moved into a new addr field, which accepts an array of objects.

Migration Example:

Before:

 match = { domain = "example.com" }
 match = { cidr = "192.168.0.0/24", port = "all" }

After:

 match = { domain = ["example.com"] }
 match = { addr = [{ cidr = "192.168.0.0/24", port = "all" }] }

Don't miss a new SpoofDPI release

NewReleases is sending notifications on new releases.