Addition of the module utilities functions
This commit is contained in:
@ -74,6 +74,17 @@ typedef struct {
|
||||
void *router_session, GWBUF *queue);
|
||||
} DOWNSTREAM;
|
||||
|
||||
/**
|
||||
* The upstream element in the filter chain. This may refer to
|
||||
* another filter or to the protocol implementation.
|
||||
*/
|
||||
typedef struct {
|
||||
void *instance;
|
||||
void *session;
|
||||
int (*write)(void *, void *, GWBUF *);
|
||||
int (*error)(void *);
|
||||
} UPSTREAM;
|
||||
|
||||
/**
|
||||
* Structure used to track the filter instances and sessions of the filters
|
||||
* that are in use within a session.
|
||||
|
||||
Reference in New Issue
Block a user