mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +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 @@
|
|||
/*
|
||||
* authorization_data.h
|
||||
*
|
||||
*
|
||||
* NIDD Authorization Information
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_authorization_data_H_
|
||||
|
|
@ -12,6 +12,9 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "mtc_provider.h"
|
||||
#include "set.h"
|
||||
#include "snssai.h"
|
||||
#include "user_identifier.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
@ -20,12 +23,18 @@ extern "C" {
|
|||
|
||||
typedef struct OpenAPI_authorization_data_s OpenAPI_authorization_data_t;
|
||||
typedef struct OpenAPI_authorization_data_s {
|
||||
OpenAPI_list_t *authorization_data;
|
||||
OpenAPI_set_t *authorization_data;
|
||||
OpenAPI_list_t *allowed_dnn_list;
|
||||
OpenAPI_list_t *allowed_snssai_list;
|
||||
OpenAPI_list_t *allowed_mtc_providers;
|
||||
char *validity_time;
|
||||
} OpenAPI_authorization_data_t;
|
||||
|
||||
OpenAPI_authorization_data_t *OpenAPI_authorization_data_create(
|
||||
OpenAPI_list_t *authorization_data,
|
||||
OpenAPI_set_t *authorization_data,
|
||||
OpenAPI_list_t *allowed_dnn_list,
|
||||
OpenAPI_list_t *allowed_snssai_list,
|
||||
OpenAPI_list_t *allowed_mtc_providers,
|
||||
char *validity_time
|
||||
);
|
||||
void OpenAPI_authorization_data_free(OpenAPI_authorization_data_t *authorization_data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue