- 03 Jun, 2024 23 commits
-
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
* num_SI is the size of the list of gNB-CU System Information messages * the new struct member is an array, sized after the maximum nb of SIB types, which contains the SI container, the container length and the SIB type
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
Including: * update gNB_DU_ID type to uint64_t in F1 gNB DU Configuration Update message
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
* added missing Transaction ID to te F1 Setup Failure message struct * fill F1 Setup Failure transaction ID in RRC before calling the F1 Setup Failure function
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
- 29 May, 2024 1 commit
-
-
Guido Casati authored
* CHECK_AND_RETURN_FALSE can be used to check a condition and return `false` if the condition is not met. When the condition fails, the macro will print a debug message to the standard error stream, including the function name, line number, and the provided format string and arguments. * CHECK_F1AP_CONDITION, CHECK_IE_CONDITION can be used to check condition on F1AP IEs or messages, and return false or NULL respectively if the condition is not met * CHECK_CRITICALITY_REJECT can be used to check whether the criticality of an F1AP IE is reject or not
-
- 23 May, 2024 16 commits
-
-
Guido Casati authored
-
Guido Casati authored
Bugfix issue with copy F1 network config to SCTP introduced in 76ea8181
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
* moved F1AP related docs to a separate folder in docs
-
Guido Casati authored
-
Guido Casati authored
-
Guido Casati authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
Add a new target f1ap_lib that groups F1AP ASN.1 encoding&decoding for messages defined f1ap_messages_types.h. The objective is to, for each F1AP message, - add encoder&decoder (similar to what already exists, but without mandatory message sending afterwards) - eq_X() function that checks two messages for equality (to be used mostly in tests) - cp_X() function that deep-copies a message, e.g., to be used when sending ITTI messages, instead of manual copying done currently - free_X() function that frees the memory associated to a memory, to avoid memory leaks. Each message will be tested, notably that encoding&decoding as well as copying yield identical messages. The actual message encoding & decoding, tests, and their use will be done in the forthcoming commits.
-
Robert Schmidt authored
-
Robert Schmidt authored
The currently used type does not cover all possibilities. While we don't encode&decode them, it might still be good to be able to express it, so introduce the new type.
-