wgengine/filter: remove redundant code

no generated code change.
This commit is contained in:
Brad Fitzpatrick 2021-02-17 09:11:28 -08:00
parent 7038c09bc9
commit d98ef5699d
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ func (f *Filter) runIn4(q *packet.Parsed) (r Response, why string) {
// can't be initiated without first sending a SYN.
// It happens to also be much faster.
// TODO(apenwarr): Skip the rest of decoding in this path?
if q.IPProto == packet.TCP && !q.IsTCPSyn() {
if !q.IsTCPSyn() {
return Accept, "tcp non-syn"
}
if f.matches4.match(q) {