mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-22 10:07:05 +00:00
Partial match group skipped
This commit is contained in:
parent
8411b99e9c
commit
19ee42fa3e
1 changed files with 5 additions and 4 deletions
|
@ -34,6 +34,7 @@ for l in fileinput.input(args.r):
|
||||||
cert = None
|
cert = None
|
||||||
if flow.search(l):
|
if flow.search(l):
|
||||||
m = flow.match(l)
|
m = flow.match(l)
|
||||||
|
if m is not None:
|
||||||
session = m.group(1)
|
session = m.group(1)
|
||||||
srcip = m.group(2)
|
srcip = m.group(2)
|
||||||
dstip = m.group(3)
|
dstip = m.group(3)
|
||||||
|
|
Loading…
Reference in a new issue