mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Fix corruption of ARP target protocol address
- We were copying the address type (1 byte) and 3 bytes of the target address instead of all 4 bytes of the target address svn path=/trunk/; revision=41723
This commit is contained in:
parent
8cb1238455
commit
fdb5cd14fe
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ BOOLEAN ARPTransmit(PIP_ADDRESS Address, PIP_INTERFACE Interface)
|
|||
Interface->Address, /* Sender's (local) hardware address */
|
||||
&Interface->Unicast.Address.IPv4Address,/* Sender's (local) protocol address */
|
||||
NULL, /* Don't care */
|
||||
&Address->Address, /* Target's (remote) protocol address */
|
||||
&Address->Address.IPv4Address, /* Target's (remote) protocol address */
|
||||
ARP_OPCODE_REQUEST); /* ARP request */
|
||||
|
||||
if( !NdisPacket ) return FALSE;
|
||||
|
|
Loading…
Reference in a new issue