22 lines
279 B
C
22 lines
279 B
C
#include <stdio.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
|
|
/*@ignore@*/
|
|
int main()
|
|
{
|
|
debug_init();
|
|
init_iptrans();
|
|
snmp_init(4957);
|
|
// heartbeat_init(0);
|
|
while(1)
|
|
{
|
|
debug_rt();
|
|
snmp_timer();
|
|
// heartbeat_timer();
|
|
usleep(1);
|
|
}
|
|
return 1;
|
|
}
|
|
/*@end@*/
|