Added some experimental IPv6 code to net branch.

git-svn-id: svn://kolibrios.org@3185 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr
2013-01-18 14:32:05 +00:00
parent 81ba3134e6
commit 382dde4fed
3 changed files with 229 additions and 36 deletions

View File

@@ -129,6 +129,7 @@ API_UDP = 3
API_TCP = 4
API_ARP = 5
API_PPPOE = 6
API_IPv6 = 7
HWACC_TCP_IPv4 = 1 shl 0
@@ -187,7 +188,7 @@ include "PPPoE.inc"
include "ARP.inc"
include "IPv4.inc"
;include "IPv6.inc"
include "IPv6.inc"
include "icmp.inc"
include "udp.inc"
@@ -729,6 +730,9 @@ sys_protocols:
cmp ax, API_PPPOE
je PPPoE_api
cmp ax, API_IPv6
je IPv6_api
add esp, 4 ; if we reached here, no function was called, so we need to balance stack
.doesnt_exist: