MINOR: stream-int: add a new pointer to the end point

The end point will correspond to either an applet context or a connection,
depending on the object type. For now the pointer remains null.
This commit is contained in:
Willy Tarreau 2013-09-29 16:05:22 +02:00
parent 372d6708fb
commit 7d67d7b9e5
3 changed files with 6 additions and 0 deletions

View File

@ -54,6 +54,7 @@ static inline const struct protocol *si_ctrl(struct stream_interface *si)
static inline void si_prepare_none(struct stream_interface *si)
{
si->ops = &si_embedded_ops;
si->end = NULL;
conn_prepare(si->conn, NULL, NULL, NULL, si);
si->conn->target = NULL;
}
@ -61,18 +62,21 @@ static inline void si_prepare_none(struct stream_interface *si)
static inline void si_prepare_conn(struct stream_interface *si, const struct protocol *ctrl, const struct xprt_ops *xprt)
{
si->ops = &si_conn_ops;
si->end = NULL;
conn_prepare(si->conn, &si_conn_cb, ctrl, xprt, si);
}
static inline void si_takeover_conn(struct stream_interface *si, const struct protocol *ctrl, const struct xprt_ops *xprt)
{
si->ops = &si_conn_ops;
si->end = NULL;
conn_assign(si->conn, &si_conn_cb, ctrl, xprt, si);
}
static inline void si_prepare_applet(struct stream_interface *si, struct si_applet *applet)
{
si->ops = &si_embedded_ops;
si->end = NULL;
conn_prepare(si->conn, NULL, NULL, NULL, si);
si->conn->target = &applet->obj_type;
}

View File

@ -160,6 +160,7 @@ struct stream_interface {
unsigned int exp; /* wake up time for connect, queue, turn-around, ... */
void *owner; /* generally a (struct task*) */
unsigned int err_type; /* first error detected, one of SI_ET_* */
enum obj_type *end; /* points to the end point (connection or appctx) */
struct connection *conn; /* descriptor for a connection */
struct si_ops *ops; /* general operations at the stream interface layer */

View File

@ -372,6 +372,7 @@ void stream_int_unregister_handler(struct stream_interface *si)
si->release = NULL;
si->owner = NULL;
si->conn->target = NULL;
si->end = NULL;
}
/* This callback is used to send a valid PROXY protocol line to a socket being