-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp_amf.c
More file actions
43 lines (33 loc) · 782 Bytes
/
app_amf.c
File metadata and controls
43 lines (33 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <semaphore.h>
#include <string.h>
#include <time.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdarg.h>
#include <unistd.h>
#include <signal.h>
#include <limits.h>
#include <poll.h>
#include <sys/epoll.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <error.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <net/if.h>
void __si_node_start_ngamf( int argc, char* argv[]);
void __si_core_wait();
void com_ngap_set_message_handler();
int main( int argc, char* argv[])
{
__si_node_start_ngamf( argc, argv);
com_ngap_set_message_handler();
__si_core_wait();
return 0;
}