File tree 2 files changed +4
-4
lines changed
src/plugins/process/flowHash/src
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
namespace ipxp {
21
21
22
22
static const PluginManifest flowhashPluginManifest = {
23
- .name = " flow_hash " ,
24
- .description = " flow_hash process plugin for parsing flow_hash value." ,
23
+ .name = " flowhash " ,
24
+ .description = " flowhash process plugin for parsing flowhash value." ,
25
25
.pluginVersion = " 1.0.0" ,
26
26
.apiVersion = " 1.0.0" ,
27
27
.usage = nullptr ,
Original file line number Diff line number Diff line change @@ -95,9 +95,9 @@ class FLOW_HASHPlugin : public ProcessPlugin {
95
95
void close ();
96
96
OptionsParser* get_parser () const
97
97
{
98
- return new OptionsParser (" flow_hash " , " Export flow hash as flow id" );
98
+ return new OptionsParser (" flowhash " , " Export flow hash as flow id" );
99
99
}
100
- std::string get_name () const { return " flow_hash " ; }
100
+ std::string get_name () const { return " flowhash " ; }
101
101
RecordExt* get_ext () const { return new RecordExtFLOW_HASH (m_pluginID); }
102
102
ProcessPlugin* copy ();
103
103
You can’t perform that action at this time.
0 commit comments