ecoli_node_dynamic - Man Page
Name
ecoli_node_dynamic — Dynamic node
— A node built dynamically at parse time by a callback.
Synopsis
Typedefs
typedef struct ec_node *(* ec_node_dynamic_build_t) (struct ec_pnode *pstate, void *opaque)
Functions
struct ec_node * ec_node_dynamic (const char *id, ec_node_dynamic_build_t build, void *opaque)
Detailed Description
A node built dynamically at parse time by a callback.
Configuration Schema
No configuration schema.
Typedef Documentation
typedef struct ec_node *(* ec_node_dynamic_build_t) (struct ec_pnode *pstate, void *opaque)
Callback invoked by parse() or complete() to build the dynamic node. The behavior of the node can depend on what is already parsed.
Definition at line 1 of file node_dynamic.h.
Function Documentation
struct ec_node * ec_node_dynamic (const char * id, ec_node_dynamic_build_t build, void * opaque)
Dynamic node where parsing/validation is done in a user-provided callback.
Author
Generated automatically by Doxygen for Libecoli from the source code.
Referenced By
The man pages ec_node_dynamic(3) and ec_node_dynamic_build_t(3) are aliases of ecoli_node_dynamic(3).