Browse Source

improve performance a little bit when having white list

pull/302/head
chrislusf 9 years ago
parent
commit
74b045e9b6
  1. 4
      go/security/guard.go

4
go/security/guard.go

@ -5,7 +5,6 @@ import (
"fmt"
"net"
"net/http"
"regexp"
"strings"
"github.com/chrislusf/seaweedfs/go/glog"
@ -108,8 +107,7 @@ func (g *Guard) checkWhiteList(w http.ResponseWriter, r *http.Request) error {
// If the whitelist entry contains a "/" it
// is a CIDR range, and we should check the
// remote host is within it
match, _ := regexp.MatchString("/", ip)
if match {
if strings.Contains(ip, "/") {
_, cidrnet, err := net.ParseCIDR(ip)
if err != nil {
panic(err)

Loading…
Cancel
Save