We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is a simple example that demonstrates this problem:
from scapy3k.all import * # NOP option packet = Ether()/IP()/TCP(options=[('NOP',None)]) print(packet[TCP].options) #this works print(bytes(packet)) #this works # SAckOK option packet = Ether()/IP()/TCP(options=[('SAckOK',None)]) print(packet[TCP].options) #this works print(bytes(packet)) #this breaks
This probably has something to do with the fact that the selective ACK has a length field of 2, but no data.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is a simple example that demonstrates this problem:
This probably has something to do with the fact that the selective ACK has a length field of 2, but no data.
The text was updated successfully, but these errors were encountered: