git-svn-id: https://spexeah.com:8443/svn/Asuro@689 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron 2018-05-10 11:02:51 +00:00
parent 80c31e9a0b
commit 865ffbc739
12 changed files with 16 additions and 12 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -34,11 +34,13 @@ var
begin begin
push_trace('arp.findCacheRecordByMAC'); push_trace('arp.findCacheRecordByMAC');
findCacheRecordByMAC:= nil; findCacheRecordByMAC:= nil;
for i:=0 to LL_Size(Cache)-1 do begin if LL_Size(Cache) > 0 then begin
r:= PARPCacheRecord(LL_Get(Cache, i)); for i:=0 to LL_Size(Cache)-1 do begin
if MACEqual(mac, @r^.MAC[0]) then begin r:= PARPCacheRecord(LL_Get(Cache, i));
findCacheRecordByMAC:= r; if MACEqual(mac, @r^.MAC[0]) then begin
break; findCacheRecordByMAC:= r;
break;
end;
end; end;
end; end;
pop_trace; pop_trace;
@ -52,11 +54,13 @@ var
begin begin
push_trace('arp.findCacheRecordByIP'); push_trace('arp.findCacheRecordByIP');
findCacheRecordByIP:= nil; findCacheRecordByIP:= nil;
for i:=0 to LL_Size(Cache)-1 do begin if LL_Size(Cache) > 0 then begin
r:= PARPCacheRecord(LL_Get(Cache, i)); for i:=0 to LL_Size(Cache)-1 do begin
if IPEqual(ip, @r^.IP[0]) then begin r:= PARPCacheRecord(LL_Get(Cache, i));
findCacheRecordByIP:= r; if IPEqual(ip, @r^.IP[0]) then begin
break; findCacheRecordByIP:= r;
break;
end;
end; end;
end; end;
pop_trace; pop_trace;

View File

@ -9,14 +9,14 @@ const
VERSION_SUB = '1'; VERSION_SUB = '1';
REVISION = '677'; REVISION = '677';
RELEASE = 'ia'; RELEASE = 'ia';
LINE_COUNT = 27776; LINE_COUNT = 27780;
FILE_COUNT = 89; FILE_COUNT = 89;
DRIVER_COUNT = 32; DRIVER_COUNT = 32;
FPC_VERSION = '2.6.4'; FPC_VERSION = '2.6.4';
NASM_VERSION = '2.10.09'; NASM_VERSION = '2.10.09';
MAKE_VERSION = '3.81'; MAKE_VERSION = '3.81';
COMPILE_DATE = '10/05/18'; COMPILE_DATE = '10/05/18';
COMPILE_TIME = '12:00:46'; COMPILE_TIME = '12:02:46';
implementation implementation