Looks like I uploaded wrong udp.inc in previous revision...

git-svn-id: svn://kolibrios.org@1484 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr 2010-06-07 14:17:36 +00:00
parent e4b0f6f30d
commit 9cbcb28cd1

View File

@ -68,6 +68,10 @@ UDP_init:
; pointer to device struct in ebx ; pointer to device struct in ebx
; UDP Packet size in ecx ; UDP Packet size in ecx
; pointer to UDP Packet in edx ; pointer to UDP Packet in edx
;
; esi = ipv4 source address
; edi = ipv4 dest address
;
; OUT: / ; OUT: /
; ;
;----------------------------------------------------------------- ;-----------------------------------------------------------------
@ -80,12 +84,14 @@ UDP_handler:
cmp [edx + UDP_Packet.Checksum], 0 cmp [edx + UDP_Packet.Checksum], 0
jz .no_checksum jz .no_checksum
xchg edi, esi ; save ipv4 source address so we can look it up later
push edx push edx
push esi push esi
push edi push edi
mov esi, edx mov esi, edx
call UDP_checksum call UDP_checksum ; this destroys edx, ecx and esi (but not edi! :)
pop edx pop edx
@ -122,9 +128,7 @@ UDP_handler:
cmp [eax + SOCKET_head.end + IPv4_SOCKET.RemoteIP], 0xffffffff cmp [eax + SOCKET_head.end + IPv4_SOCKET.RemoteIP], 0xffffffff
je .ok1 je .ok1
; mov esi, [esp] ; start of data (ethernet header) cmp [eax + SOCKET_head.end + IPv4_SOCKET.RemoteIP], edi ; edi is IPv4 destination address
; mov esi, [esi + ETH_FRAME.Data + IPv4_Packet.SourceAddress] ; get the Source address from the IP Packet FIXME
cmp [eax + SOCKET_head.end + IPv4_SOCKET.RemoteIP], edi ;esi
jne .try_more ; Quit if the source IP is not valid, check for more sockets with this IP/PORT combination jne .try_more ; Quit if the source IP is not valid, check for more sockets with this IP/PORT combination