We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791e134 commit 590a894Copy full SHA for 590a894
src/send_control.asm
@@ -30,12 +30,15 @@ send_ctrl_close:
30
send_ctrl_msg_connect6:
31
push rax
32
33
- mov qword [token], 0xff_ff_ff_ff
+ mov byte [token+0], 0xff
34
+ mov byte [token+1], 0xff
35
+ mov byte [token+2], 0xff
36
+ mov byte [token+3], 0xff
37
38
packet6_pack_byte MSG_CTRL_CONNECT
39
packet6_pack_raw MAGIC_TKEN, 4
40
- mov byte [out_packet_header_flags], PACKETFLAG_CONTROL
41
+ mov byte [out_packet_header_flags], PACKETFLAG6_CONTROL
42
mov byte [out_packet_header_num_chunks], 0
43
call send_packet
44
0 commit comments