init ems server code

This commit is contained in:
2024-09-27 15:39:34 +08:00
parent 9d4009aaca
commit 9930e4e58f
1551 changed files with 110216 additions and 102864 deletions

View File

@@ -0,0 +1,21 @@
#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@*/