mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* steering_mode.h
|
||||
*
|
||||
*
|
||||
* Contains the steering mode value and parameters determined by the PCF.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_steering_mode_H_
|
||||
|
|
@ -14,7 +14,9 @@
|
|||
#include "../include/binary.h"
|
||||
#include "access_type.h"
|
||||
#include "access_type_rm.h"
|
||||
#include "steer_mode_indicator.h"
|
||||
#include "steer_mode_value.h"
|
||||
#include "threshold_value.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -28,6 +30,8 @@ typedef struct OpenAPI_steering_mode_s {
|
|||
bool is__3g_load;
|
||||
int _3g_load;
|
||||
OpenAPI_access_type_e prio_acc;
|
||||
struct OpenAPI_threshold_value_s *thres_value;
|
||||
OpenAPI_steer_mode_indicator_e steer_mode_ind;
|
||||
} OpenAPI_steering_mode_t;
|
||||
|
||||
OpenAPI_steering_mode_t *OpenAPI_steering_mode_create(
|
||||
|
|
@ -36,7 +40,9 @@ OpenAPI_steering_mode_t *OpenAPI_steering_mode_create(
|
|||
OpenAPI_access_type_rm_t *standby,
|
||||
bool is__3g_load,
|
||||
int _3g_load,
|
||||
OpenAPI_access_type_e prio_acc
|
||||
OpenAPI_access_type_e prio_acc,
|
||||
OpenAPI_threshold_value_t *thres_value,
|
||||
OpenAPI_steer_mode_indicator_e steer_mode_ind
|
||||
);
|
||||
void OpenAPI_steering_mode_free(OpenAPI_steering_mode_t *steering_mode);
|
||||
OpenAPI_steering_mode_t *OpenAPI_steering_mode_parseFromJSON(cJSON *steering_modeJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue