Skip to content

Commit 5d6a3c3

Browse files
authored
Merge pull request #267 from CESNET/rename-flow-hash-process-plugin
FlowHash: Rename flow_hash process plugin to flowhash
2 parents ff6a390 + 07a7c3a commit 5d6a3c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/plugins/process/flowHash/src/flow_hash.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
namespace ipxp {
2121

2222
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.",
2525
.pluginVersion = "1.0.0",
2626
.apiVersion = "1.0.0",
2727
.usage = nullptr,

src/plugins/process/flowHash/src/flow_hash.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ class FLOW_HASHPlugin : public ProcessPlugin {
9595
void close();
9696
OptionsParser* get_parser() const
9797
{
98-
return new OptionsParser("flow_hash", "Export flow hash as flow id");
98+
return new OptionsParser("flowhash", "Export flow hash as flow id");
9999
}
100-
std::string get_name() const { return "flow_hash"; }
100+
std::string get_name() const { return "flowhash"; }
101101
RecordExt* get_ext() const { return new RecordExtFLOW_HASH(m_pluginID); }
102102
ProcessPlugin* copy();
103103

0 commit comments

Comments
 (0)