forked from KolibriOS/kolibrios
Added missed and dumped TCP packet counters to netstat.
git-svn-id: svn://kolibrios.org@3332 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
336245620b
commit
52f75a8646
@ -165,10 +165,22 @@ redraw:
|
|||||||
.no_arp:
|
.no_arp:
|
||||||
|
|
||||||
mcall 4, 20 shl 16 + 75, 0x80000000, str_packets_tx
|
mcall 4, 20 shl 16 + 75, 0x80000000, str_packets_tx
|
||||||
|
|
||||||
add ebx, 18
|
add ebx, 18
|
||||||
mov edx, str_packets_rx
|
mov edx, str_packets_rx
|
||||||
mcall
|
mcall
|
||||||
|
|
||||||
|
cmp [mode], 106
|
||||||
|
jne end_of_draw
|
||||||
|
|
||||||
|
add ebx, 18
|
||||||
|
mov edx, str_missed
|
||||||
|
mcall
|
||||||
|
|
||||||
|
add ebx, 18
|
||||||
|
mov edx, str_dumped
|
||||||
|
mcall
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
end_of_draw:
|
end_of_draw:
|
||||||
@ -376,9 +388,21 @@ not_105:
|
|||||||
pop ebx
|
pop ebx
|
||||||
push eax
|
push eax
|
||||||
|
|
||||||
|
inc bl
|
||||||
|
push ebx
|
||||||
|
mcall 76
|
||||||
|
pop ebx
|
||||||
|
push eax
|
||||||
|
|
||||||
|
inc bl
|
||||||
|
push ebx
|
||||||
|
mcall 76
|
||||||
|
pop ebx
|
||||||
|
push eax
|
||||||
|
|
||||||
mov ebx, 0x000a0000
|
mov ebx, 0x000a0000
|
||||||
pop ecx
|
pop ecx
|
||||||
mov edx, 135 shl 16 + 75 + 18
|
mov edx, 135 shl 16 + 75 + 18*3
|
||||||
mov esi, 0x40000000
|
mov esi, 0x40000000
|
||||||
mov edi, 0x00bcbcbc
|
mov edi, 0x00bcbcbc
|
||||||
mcall 47
|
mcall 47
|
||||||
@ -387,6 +411,14 @@ not_105:
|
|||||||
pop ecx
|
pop ecx
|
||||||
mcall
|
mcall
|
||||||
|
|
||||||
|
sub edx, 18
|
||||||
|
pop ecx
|
||||||
|
mcall
|
||||||
|
|
||||||
|
sub edx, 18
|
||||||
|
pop ecx
|
||||||
|
mcall
|
||||||
|
|
||||||
jmp mainloop
|
jmp mainloop
|
||||||
|
|
||||||
not_106:
|
not_106:
|
||||||
@ -557,6 +589,8 @@ str_gateway db 'Standard gateway:', 0
|
|||||||
str_arp db 'ARP entrys:', 0
|
str_arp db 'ARP entrys:', 0
|
||||||
str_conflicts db 'ARP conflicts:', 0
|
str_conflicts db 'ARP conflicts:', 0
|
||||||
str_unknown db 'unknown', 0
|
str_unknown db 'unknown', 0
|
||||||
|
str_missed db 'Packets missed:',0
|
||||||
|
str_dumped db 'Packets dumped:',0
|
||||||
|
|
||||||
namebuf rb 64
|
namebuf rb 64
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user