mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
e158218aab
Fix INADDR_LOOPBACK starvation. Don't react to pings that come back from another address than what we pinged.
16 lines
493 B
Plaintext
16 lines
493 B
Plaintext
--- ../tkined/apps/snmp_monitor.tcl Mon Sep 2 18:30:19 1996
|
|
+++ ..//tkined/apps/snmp_monitor.tcl Mon Mar 3 14:43:52 1997
|
|
@@ -482,8 +482,11 @@
|
|
|
|
set args $ip
|
|
set i 0
|
|
+ set snmpconfig [ined attribute $id "SNMP:Config"]
|
|
foreach if $iflist {
|
|
- lappend args [CreateChart $id [expr 30+$i] [expr 30+$i]]
|
|
+ set nid [CreateChart $id [expr 30+$i] [expr 30+$i]]
|
|
+ lappend args $nid
|
|
+ ined -noupdate attribute $nid "SNMP:Config" $snmpconfig
|
|
lappend args $if
|
|
incr i
|
|
}
|