output: add submodules list to OutputCtx

Add a list to the OutputCtx that can contain OutputModule structures.
This will be used by a 'parent' module to register submodules directly.
pull/1112/head
Victor Julien 11 years ago
parent 6493554663
commit eb5a70fe09

@ -74,6 +74,8 @@ typedef struct OutputCtx_ {
/** Pointer to a cleanup function. */
void (*DeInit)(struct OutputCtx_ *);
TAILQ_HEAD(, OutputModule_) submodules;
} OutputCtx;
TmModule *TmModuleGetByName(const char *name);

Loading…
Cancel
Save