This repository has been archived on 2024-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
dlnaprox/internal/options.go
2022-12-19 12:24:20 -07:00

14 lines
207 B
Go

package internal
import "net"
type Options struct {
OuterIP net.IP
InnerNetwork net.IPNet
OuterNetwork net.IPNet
Rewrite bool
Replacement string
MatchPrefix string
MatchPostfix string
}