From 6bf8356208a1dfa135ea2bc2034ce32e4424fa17 Mon Sep 17 00:00:00 2001 From: hidnplayr Date: Fri, 17 May 2013 11:33:49 +0000 Subject: [PATCH] Renamed IPv4_dest_to_dev to IPv4_route git-svn-id: svn://kolibrios.org@3515 a494cfbc-eb01-0410-851d-a64ba20cac60 --- kernel/branches/net/network/IPv4.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel/branches/net/network/IPv4.inc b/kernel/branches/net/network/IPv4.inc index ea80e5a2e0..00d06dcb41 100644 --- a/kernel/branches/net/network/IPv4.inc +++ b/kernel/branches/net/network/IPv4.inc @@ -578,7 +578,7 @@ IPv4_output: cmp eax, 1 shl 24 + 127 je .loopback - call IPv4_dest_to_dev ; outputs device number in edi, dest ip in eax + call IPv4_route ; outputs device number in edi, dest ip in eax call ARP_IP_to_MAC test eax, 0xffff0000 ; error bits jnz .arp_error @@ -666,7 +666,7 @@ IPv4_output_raw: sub esp, 8 push esi eax - call IPv4_dest_to_dev + call IPv4_route call ARP_IP_to_MAC test eax, 0xffff0000 ; error bits @@ -852,7 +852,7 @@ IPv4_fragment: ;--------------------------------------------------------------------------- ; -; IPv4_dest_to_dev +; IPv4_route ; ; IN: eax = Destination IP ; OUT: edi = device id * 4 @@ -860,7 +860,7 @@ IPv4_fragment: ; ;--------------------------------------------------------------------------- align 4 -IPv4_dest_to_dev: +IPv4_route: cmp eax, 0xffffffff je .broadcast