move cpd-ldp to discovery-protocols

git-svn-id: http://www.observium.org/svn/observer/trunk@888 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong 2010-02-20 15:09:31 +00:00
parent 14cbdccee3
commit fd3955d8f0
3 changed files with 2 additions and 3 deletions

View File

@ -113,8 +113,8 @@ while ($device = mysql_fetch_array($device_query))
## hr-device.inc.php
include("includes/discovery/hr-device.inc.php");
## CDP & LLDP
include("includes/discovery/cdp-lldp.inc.php");
## Discovery Protocols (FDP, CDP & LLDP)
include("includes/discovery/discovery-protocols.inc.php");
## ARP Table
include("includes/discovery/arp-table.php");

View File

@ -9,7 +9,6 @@ $i="1";
$s=fopen('php://stdin','r');
while($line=fgets($s)){
list($entry['host'],$entry['facility'],$entry['priority'], $entry['level'], $entry['tag'], $entry['timestamp'], $entry['msg']) = explode("||", trim($line));
shell_exec('echo "'.$i.'. '.$entry['host'].' -> '.$entry['msg'].'" >> /tmp/syslog');
process_syslog($entry, 1);
unset($entry); unset($line);
$i++;