43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/*
|
|
* v1_ingress_port_status.h
|
|
*
|
|
* IngressPortStatus represents the error condition of a service port
|
|
*/
|
|
|
|
#ifndef _v1_ingress_port_status_H_
|
|
#define _v1_ingress_port_status_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_ingress_port_status_t v1_ingress_port_status_t;
|
|
|
|
|
|
|
|
|
|
typedef struct v1_ingress_port_status_t {
|
|
char *error; // string
|
|
int port; //numeric
|
|
char *protocol; // string
|
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
|
} v1_ingress_port_status_t;
|
|
|
|
__attribute__((deprecated)) v1_ingress_port_status_t *v1_ingress_port_status_create(
|
|
char *error,
|
|
int port,
|
|
char *protocol
|
|
);
|
|
|
|
void v1_ingress_port_status_free(v1_ingress_port_status_t *v1_ingress_port_status);
|
|
|
|
v1_ingress_port_status_t *v1_ingress_port_status_parseFromJSON(cJSON *v1_ingress_port_statusJSON);
|
|
|
|
cJSON *v1_ingress_port_status_convertToJSON(v1_ingress_port_status_t *v1_ingress_port_status);
|
|
|
|
#endif /* _v1_ingress_port_status_H_ */
|
|
|