File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -119,9 +119,9 @@ struct RecordExt${PLUGIN_UPPER} : public RecordExt {
119
119
};
120
120
121
121
/**
122
- * \\ brief Flow cache plugin for parsing ${PLUGIN_UPPER} packets.
122
+ * \\ brief Process plugin for parsing ${PLUGIN_UPPER} packets.
123
123
*/
124
- class ${PLUGIN_UPPER} Plugin : public FlowCachePlugin
124
+ class ${PLUGIN_UPPER} Plugin : public ProcessPlugin
125
125
{
126
126
public:
127
127
${PLUGIN_UPPER} Plugin();
@@ -131,7 +131,7 @@ public:
131
131
OptionsParser *get_parser() const { return new OptionsParser(\" ${PLUGIN} \" , \" Parse ${PLUGIN_UPPER} traffic\" ); }
132
132
std::string get_name() const { return \" ${PLUGIN} \" ; }
133
133
RecordExt *get_ext() const { return new RecordExt${PLUGIN_UPPER} (); }
134
- FlowCachePlugin *copy();
134
+ ProcessPlugin *copy();
135
135
136
136
int pre_create(Packet &pkt);
137
137
int post_create(Flow &rec, const Packet &pkt);
@@ -177,7 +177,7 @@ void ${PLUGIN_UPPER}Plugin::close()
177
177
{
178
178
}
179
179
180
- FlowCachePlugin *${PLUGIN_UPPER} Plugin::copy()
180
+ ProcessPlugin *${PLUGIN_UPPER} Plugin::copy()
181
181
{
182
182
return new ${PLUGIN_UPPER} Plugin(*this);
183
183
}
You can’t perform that action at this time.
0 commit comments