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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the OAI Public License, Version 1.1 (the "License"); you may not use this file
* except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.openairinterface.org/?page_id=698
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*-------------------------------------------------------------------------------
* For more information about the OpenAirInterface (OAI) Software Alliance:
* contact@openairinterface.org
*/
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sched.h>
#include "mme_config.h"
#include "gtpv1u_sgw_defs.h"
#include "intertask_interface.h"
#include "sctp_primitives_server.h"
#include "udp_primitives_server.h"
#include "s1ap_mme.h"
#include "log.h"
#include "sgw_lite_defs.h"
#include "ipv4_defs.h"
int main(int argc, char *argv[])
{
int i = 0;
int prio = 0;
mme_config_t mme_config;
MessageDef *message_p;
struct sched_param param = {
.sched_priority = 10,
};
config_parse_opt_line(argc, argv, &mme_config);
fprintf(stdout, "Starting %s ITTI test\n", PACKAGE_STRING);
if (setpriority(PRIO_PROCESS, 0, prio) < 0) {
fprintf(stderr, "Cannot assign requested prio: %d\n"
"%d:%s\n", prio, errno, strerror(errno));
return -1;
}
if (sched_setscheduler(0, SCHED_RR, ¶m) < 0) {
fprintf(stderr, "Cannot assign requested scheduler policy\n"
"%d:%s\n", errno, strerror(errno));
return -1;
}
/* Calling each layer init function */
log_init(&mme_config);
itti_init(TASK_MAX, tasks_info);
sctp_init(&mme_config);
udp_init(&mme_config);
s1ap_mme_init(&mme_config);
gtpv1u_init(&mme_config);
ipv4_init(&mme_config);
sgw_lite_init(&mme_config);
message_p = itti_alloc_new_message(TASK_S1AP, MESSAGE_TEST);
while(i < (1 << 15)) {
if (send_broadcast_message(message_p) < 0) {
fprintf(stderr, "Failed to send broadcast message %d\n", i);
}
i++;
}
fprintf(stderr, "Successfully sent %lu messages", get_current_message_number());
return 0;
}