Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/plugins/process/flowHash/src/flow_hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
namespace ipxp {

static const PluginManifest flowhashPluginManifest = {
.name = "flow_hash",
.description = "flow_hash process plugin for parsing flow_hash value.",
.name = "flowhash",
.description = "flowhash process plugin for parsing flowhash value.",
.pluginVersion = "1.0.0",
.apiVersion = "1.0.0",
.usage = nullptr,
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/process/flowHash/src/flow_hash.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ class FLOW_HASHPlugin : public ProcessPlugin {
void close();
OptionsParser* get_parser() const
{
return new OptionsParser("flow_hash", "Export flow hash as flow id");
return new OptionsParser("flowhash", "Export flow hash as flow id");
}
std::string get_name() const { return "flow_hash"; }
std::string get_name() const { return "flowhash"; }
RecordExt* get_ext() const { return new RecordExtFLOW_HASH(m_pluginID); }
ProcessPlugin* copy();

Expand Down