mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
parent
c6bfbed922
commit
9af4268bab
691 changed files with 40727 additions and 18985 deletions
41
lib/sbi/openapi/model/security_result.h
Normal file
41
lib/sbi/openapi/model/security_result.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* security_result.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_security_result_H_
|
||||
#define _OpenAPI_security_result_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "protection_result.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_security_result_s OpenAPI_security_result_t;
|
||||
typedef struct OpenAPI_security_result_s {
|
||||
OpenAPI_protection_result_e integrity_protection_result;
|
||||
OpenAPI_protection_result_e confidentiality_protection_result;
|
||||
} OpenAPI_security_result_t;
|
||||
|
||||
OpenAPI_security_result_t *OpenAPI_security_result_create(
|
||||
OpenAPI_protection_result_e integrity_protection_result,
|
||||
OpenAPI_protection_result_e confidentiality_protection_result
|
||||
);
|
||||
void OpenAPI_security_result_free(OpenAPI_security_result_t *security_result);
|
||||
OpenAPI_security_result_t *OpenAPI_security_result_parseFromJSON(cJSON *security_resultJSON);
|
||||
cJSON *OpenAPI_security_result_convertToJSON(OpenAPI_security_result_t *security_result);
|
||||
OpenAPI_security_result_t *OpenAPI_security_result_copy(OpenAPI_security_result_t *dst, OpenAPI_security_result_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_security_result_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue