mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +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 @@
|
|||
/*
|
||||
* default_notification_subscription.h
|
||||
*
|
||||
* Data structure for specifying the notifications the NF service subscribes by default along with callback URI
|
||||
* Data structure for specifying the notifications the NF service subscribes by default, along with callback URI
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_default_notification_subscription_H_
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "def_sub_service_info.h"
|
||||
#include "n1_message_class.h"
|
||||
#include "n2_information_class.h"
|
||||
#include "notification_type.h"
|
||||
|
|
@ -28,6 +29,9 @@ typedef struct OpenAPI_default_notification_subscription_s {
|
|||
OpenAPI_n2_information_class_e n2_information_class;
|
||||
OpenAPI_list_t *versions;
|
||||
char *binding;
|
||||
char *accepted_encoding;
|
||||
char *supported_features;
|
||||
OpenAPI_list_t* service_info_list;
|
||||
} OpenAPI_default_notification_subscription_t;
|
||||
|
||||
OpenAPI_default_notification_subscription_t *OpenAPI_default_notification_subscription_create(
|
||||
|
|
@ -36,7 +40,10 @@ OpenAPI_default_notification_subscription_t *OpenAPI_default_notification_subscr
|
|||
OpenAPI_n1_message_class_e n1_message_class,
|
||||
OpenAPI_n2_information_class_e n2_information_class,
|
||||
OpenAPI_list_t *versions,
|
||||
char *binding
|
||||
char *binding,
|
||||
char *accepted_encoding,
|
||||
char *supported_features,
|
||||
OpenAPI_list_t* service_info_list
|
||||
);
|
||||
void OpenAPI_default_notification_subscription_free(OpenAPI_default_notification_subscription_t *default_notification_subscription);
|
||||
OpenAPI_default_notification_subscription_t *OpenAPI_default_notification_subscription_parseFromJSON(cJSON *default_notification_subscriptionJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue