[BUGFIX]group2group support sub_group_id array => TSG-18025

This commit is contained in:
liuwentan
2023-12-21 02:13:39 +00:00
parent 580a594806
commit cc1e1d2f7f
6 changed files with 104 additions and 59 deletions

View File

@@ -23,6 +23,7 @@ extern "C"
#define MAX_IP_STR_LEN 64
#define MAX_INSTANCE_NAME_LEN 15
#define MAX_GROUP_IDS_STR_LEN 256
#define MAX_GROUP_CNT 128
#ifdef __cplusplus
}

View File

@@ -20,6 +20,8 @@ extern "C"
#include <stddef.h>
#include <arpa/inet.h>
#include "uthash/utarray.h"
#define TRUE 1
#define FALSE 0
@@ -122,6 +124,8 @@ int system_cmd_gzip(const char *src_file, const char *dst_file);
int system_cmd_encrypt(const char *src_file, const char *dst_file, const char *password);
int ids_str2longlong_array(const char *ids_str, UT_array *ids_array);
#ifdef __cplusplus
}
#endif