Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixed up setting TCP flags.
New commands to set TCP flags are:
set tcp [flag|flags]
range tcp [flag|flags]
Use flag or flags you can set multiple flags or a single flag.
tcp-flags is a comma delimited list of TCP flags 'cwr,ece,urg,ack,psh,rst,syn,fin,clr' the 'clr' will reset the flags to zero. If you
have say 'syn,ack,clr' the result with will zero flags. if 'clr,syn,ack` will clear the flags and set syn,ack if 'syn,clr,ack' will set
syn, then clear the flags and set ack bit. So clr is used to set the flags to zero and should be used without other flags.
tcp flags are not ORed into the tcp flags the command will set the flags to the list.