50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
* v1_service_port.h
|
|
*
|
|
* ServicePort contains information on service's port.
|
|
*/
|
|
|
|
#ifndef _v1_service_port_H_
|
|
#define _v1_service_port_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_service_port_t v1_service_port_t;
|
|
|
|
#include "int_or_string.h"
|
|
|
|
|
|
|
|
typedef struct v1_service_port_t {
|
|
char *app_protocol; // string
|
|
char *name; // string
|
|
int node_port; //numeric
|
|
int port; //numeric
|
|
char *protocol; // string
|
|
int_or_string_t *target_port; // custom
|
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
|
} v1_service_port_t;
|
|
|
|
__attribute__((deprecated)) v1_service_port_t *v1_service_port_create(
|
|
char *app_protocol,
|
|
char *name,
|
|
int node_port,
|
|
int port,
|
|
char *protocol,
|
|
int_or_string_t *target_port
|
|
);
|
|
|
|
void v1_service_port_free(v1_service_port_t *v1_service_port);
|
|
|
|
v1_service_port_t *v1_service_port_parseFromJSON(cJSON *v1_service_portJSON);
|
|
|
|
cJSON *v1_service_port_convertToJSON(v1_service_port_t *v1_service_port);
|
|
|
|
#endif /* _v1_service_port_H_ */
|
|
|