31 lines
822 B
C
31 lines
822 B
C
/*
|
|
**********************************************************************************************
|
|
* File: json2iris.h
|
|
* Description: rule for transform json2iris
|
|
* Authors: Zheng chao <zhengchao@geedgenetworks.com>
|
|
* Date: 2022-10-31
|
|
* Copyright: (c) Since 2022 Geedge Networks, Ltd. All rights reserved.
|
|
***********************************************************************************************
|
|
*/
|
|
|
|
#ifndef _JSON2IRIS_H_
|
|
#define _JSON2IRIS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "hiredis/hiredis.h"
|
|
#include "log/log.h"
|
|
|
|
int json2iris(const char *json_buff, const char *json_filename,
|
|
redisContext *redis_write_ctx, char *iris_dir_buf,
|
|
int buf_len, char *encrypt_key, char *encrypt_algo,
|
|
struct log_handle *logger);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |