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,6 +34,7 @@ var
begin begin
push_trace('arp.findCacheRecordByMAC'); push_trace('arp.findCacheRecordByMAC');
findCacheRecordByMAC:= nil; findCacheRecordByMAC:= nil;
if LL_Size(Cache) > 0 then begin
for i:=0 to LL_Size(Cache)-1 do begin for i:=0 to LL_Size(Cache)-1 do begin
r:= PARPCacheRecord(LL_Get(Cache, i)); r:= PARPCacheRecord(LL_Get(Cache, i));
if MACEqual(mac, @r^.MAC[0]) then begin if MACEqual(mac, @r^.MAC[0]) then begin
@ -41,6 +42,7 @@ begin
break; break;
end; end;
end; end;
end;
pop_trace; pop_trace;
end; end;
@ -52,6 +54,7 @@ var
begin begin
push_trace('arp.findCacheRecordByIP'); push_trace('arp.findCacheRecordByIP');
findCacheRecordByIP:= nil; findCacheRecordByIP:= nil;
if LL_Size(Cache) > 0 then begin
for i:=0 to LL_Size(Cache)-1 do begin for i:=0 to LL_Size(Cache)-1 do begin
r:= PARPCacheRecord(LL_Get(Cache, i)); r:= PARPCacheRecord(LL_Get(Cache, i));
if IPEqual(ip, @r^.IP[0]) then begin if IPEqual(ip, @r^.IP[0]) then begin
@ -59,6 +62,7 @@ begin
break; break;
end; end;
end; end;
end;
pop_trace; pop_trace;
end; end;

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