This pointer indicates what stream-interface the appctx belongs to, just
like we have for the connections.
{
si->ops = &si_embedded_ops;
si->end = &appctx->obj_type;
+ appctx->owner = si;
}
/* returns a pointer to the appctx being run in the SI or NULL if none */
unsigned int st1; /* prompt for stats, session error for peers */
unsigned int st2; /* output state for stats, unused by peers */
struct si_applet *applet; /* applet this context refers to */
+ void *owner; /* pointer to upper layer's entity (eg: stream interface) */
union {
struct {