Move expert_group_vals expert_severity_vals constant definitions to expert.h

svn path=/trunk/; revision=47995
This commit is contained in:
Balint Reczey 2013-03-02 01:00:20 +00:00
parent 27320f87cb
commit 1b1716638a
2 changed files with 24 additions and 27 deletions

View File

@ -47,31 +47,6 @@ static int hf_expert_msg = -1;
static int hf_expert_group = -1;
static int hf_expert_severity = -1;
const value_string expert_group_vals[] = {
{ PI_CHECKSUM, "Checksum" },
{ PI_SEQUENCE, "Sequence" },
{ PI_RESPONSE_CODE, "Response" },
{ PI_REQUEST_CODE, "Request" },
{ PI_UNDECODED, "Undecoded" },
{ PI_REASSEMBLE, "Reassemble" },
{ PI_MALFORMED, "Malformed" },
{ PI_DEBUG, "Debug" },
{ PI_PROTOCOL, "Protocol" },
{ PI_SECURITY, "Security" },
{ PI_COMMENTS_GROUP, "Comment" },
{ 0, NULL }
};
const value_string expert_severity_vals[] = {
{ PI_ERROR, "Error" },
{ PI_WARN, "Warn" },
{ PI_NOTE, "Note" },
{ PI_CHAT, "Chat" },
{ PI_COMMENT, "Comment" },
{ 0, "Ok" },
{ 0, NULL }
};
void
expert_init(void)
{

View File

@ -46,8 +46,30 @@ typedef struct expert_info_s {
proto_item *pitem;
} expert_info_t;
WS_DLL_PUBLIC const value_string expert_severity_vals[];
WS_DLL_PUBLIC const value_string expert_group_vals[];
static const value_string expert_group_vals[] = {
{ PI_CHECKSUM, "Checksum" },
{ PI_SEQUENCE, "Sequence" },
{ PI_RESPONSE_CODE, "Response" },
{ PI_REQUEST_CODE, "Request" },
{ PI_UNDECODED, "Undecoded" },
{ PI_REASSEMBLE, "Reassemble" },
{ PI_MALFORMED, "Malformed" },
{ PI_DEBUG, "Debug" },
{ PI_PROTOCOL, "Protocol" },
{ PI_SECURITY, "Security" },
{ PI_COMMENTS_GROUP, "Comment" },
{ 0, NULL }
};
static const value_string expert_severity_vals[] = {
{ PI_ERROR, "Error" },
{ PI_WARN, "Warn" },
{ PI_NOTE, "Note" },
{ PI_CHAT, "Chat" },
{ PI_COMMENT, "Comment" },
{ 0, "Ok" },
{ 0, NULL }
};
/* "proto_expert" is exported from libwireshark.dll.
* Thus we need a special declaration.