29 lines
678 B
C
29 lines
678 B
C
/*
|
|
**********************************************************************************************
|
|
* File: maat_limits.h
|
|
* Description:
|
|
* Authors: Liu WenTan <liuwentan@geedgenetworks.com>
|
|
* Date: 2022-10-31
|
|
* Copyright: (c) Since 2022 Geedge Networks, Ltd. All rights reserved.
|
|
***********************************************************************************************
|
|
*/
|
|
|
|
#ifndef _MAAT_LIMITS_H_
|
|
#define _MAAT_LIMITS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#define MAX_KEYWORDS_STR_LEN 1024
|
|
#define MAX_MAAT_STAT_NUM 64
|
|
#define MAX_NAME_STR_LEN 64
|
|
#define MAX_IP_STR_LEN 64
|
|
#define MAX_INSTANCE_NAME_LEN 15
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |