File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -485,16 +485,16 @@ def answers(self, other):
485485 # Linux's sk_buff considers the IPv6 Payload
486486 # to be either TCP, UDP or ICMP. It does not
487487 # consider Extension Headers to be the payload.
488- # Following similar architecture, this small
488+ # Following similar architecture, this small
489489 # modification lets packet flow with Destination
490490 # Option on both, request and response packets
491491 # be captured as well.
492492 if UDP in self and UDP in other :
493493 return self [UDP ].answers (other [UDP ])
494494 elif TCP in self and TCP in other :
495- return self [TCP ].answers (other [TCP ])
495+ return self [TCP ].answers (other [TCP ])
496496 else :
497- return self .payload .answers (other .payload .payload ) # Previous Implementation
497+ return self .payload .answers (other .payload .payload )
498498 elif self .nh == 60 and isinstance (self .payload , IPv6ExtHdrDestOpt ): # BU in reply to BRR, for instance # noqa: E501
499499 return self .payload .payload .answers (other .payload )
500500 else :
You can’t perform that action at this time.
0 commit comments