Skip to content

Commit 228265b

Browse files
committed
Send the complete inquiry request in response for context.
1 parent 259f621 commit 228265b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ async Task admin()
322322
}, port_low + (port_high << 8));
323323

324324
if (clients.TryGetValue((client_ep, server_port), out var info)) {
325-
await control.SendAsync([ 0x2e, 0x12, port_high, port_low, ..ep_bytes ], 0, packet.RemoteEndPoint);
325+
await control.SendAsync([ 0x2e, 0x12, port_high, port_low, ..ep_bytes ], 4 + ep_bytes.Count, packet.RemoteEndPoint);
326326
}
327327
}
328328
break;

0 commit comments

Comments
 (0)