mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30: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 @@
|
|||
/*
|
||||
* amf_subscription_info.h
|
||||
*
|
||||
*
|
||||
* Information the UDR stores and retrieves related to active subscriptions at the AMF(s).
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_amf_subscription_info_H_
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "context_info.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -22,12 +23,14 @@ typedef struct OpenAPI_amf_subscription_info_s {
|
|||
char *amf_instance_id;
|
||||
char *subscription_id;
|
||||
char *subs_change_notify_correlation_id;
|
||||
struct OpenAPI_context_info_s *context_info;
|
||||
} OpenAPI_amf_subscription_info_t;
|
||||
|
||||
OpenAPI_amf_subscription_info_t *OpenAPI_amf_subscription_info_create(
|
||||
char *amf_instance_id,
|
||||
char *subscription_id,
|
||||
char *subs_change_notify_correlation_id
|
||||
char *subs_change_notify_correlation_id,
|
||||
OpenAPI_context_info_t *context_info
|
||||
);
|
||||
void OpenAPI_amf_subscription_info_free(OpenAPI_amf_subscription_info_t *amf_subscription_info);
|
||||
OpenAPI_amf_subscription_info_t *OpenAPI_amf_subscription_info_parseFromJSON(cJSON *amf_subscription_infoJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue