mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
Added N32 Interface to implement SEPP
This commit is contained in:
parent
a8790713d7
commit
e41afff7ac
63 changed files with 5503 additions and 290 deletions
31
lib/sbi/openapi/model/http_method.h
Normal file
31
lib/sbi/openapi/model/http_method.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* http_method.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_http_method_H_
|
||||
#define _OpenAPI_http_method_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef enum { OpenAPI_http_method_NULL = 0, OpenAPI_http_method_GET, OpenAPI_http_method_PUT, OpenAPI_http_method_POST, OpenAPI_http_method__DELETE, OpenAPI_http_method_PATCH, OpenAPI_http_method_HEAD, OpenAPI_http_method_OPTIONS, OpenAPI_http_method_CONNECT, OpenAPI_http_method_TRACE } OpenAPI_http_method_e;
|
||||
|
||||
char* OpenAPI_http_method_ToString(OpenAPI_http_method_e http_method);
|
||||
|
||||
OpenAPI_http_method_e OpenAPI_http_method_FromString(char* http_method);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_http_method_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue