We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5313f44 commit 37ce46dCopy full SHA for 37ce46d
utils/trace.py
@@ -204,9 +204,9 @@ def send_single_packet(this_request, timeout):
204
this_request[TCP].sport = ephemeral_port_reserve("tcp")
205
if this_request[TCP].flags == "S":
206
this_request[TCP].seq = RandInt()
207
- timestamp_start, new_timestamp = get_new_timestamp()
+ _, new_timestamp = get_new_timestamp()
208
this_request[TCP].options = tcp_options_correction(
209
- this_request[TCP].options, new_timestamp, int(timestamp_start))
+ this_request[TCP].options, new_timestamp, 0)
210
del(this_request[TCP].chksum)
211
elif this_request.haslayer(UDP):
212
this_request[UDP].sport = ephemeral_port_reserve("udp")
0 commit comments