summaryrefslogtreecommitdiff
path: root/service/http/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'service/http/config.go')
-rw-r--r--service/http/config.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/service/http/config.go b/service/http/config.go
index ff15e83e..25be205c 100644
--- a/service/http/config.go
+++ b/service/http/config.go
@@ -189,6 +189,14 @@ func (c *Config) IsTrusted(ip string) bool {
return false
}
+func (c *Config) IsValid(ip string) bool {
+ i := net.ParseIP(ip)
+ if i == nil {
+ return false
+ }
+ return true
+}
+
// Valid validates the configuration.
func (c *Config) Valid() error {
if c.Uploads == nil {