diff options
Diffstat (limited to 'http_log.go')
| -rw-r--r-- | http_log.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/http_log.go b/http_log.go index 8aed58b..12a9f0e 100644 --- a/http_log.go +++ b/http_log.go @@ -207,6 +207,10 @@ func Parse(in []byte, reqHeaders []string) (httpLog *HTTPLog) { return nil } + if httpLog.ServerName == `<NOSRV>` { + return nil + } + ok = httpLog.parseConnectionTimes(in) if !ok { return nil |
