si->owner is not used anymore now, so let's remove any reference to it.
}
/* initializes a stream interface in the SI_ST_INI state. It's detached from
- * any endpoint and is only attached to an owner (generally a task).
+ * any endpoint and only keeps its side which is expected to have already been
+ * set.
*/
-static inline void si_reset(struct stream_interface *si, void *owner)
+static inline void si_reset(struct stream_interface *si)
{
- si->owner = owner;
si->err_type = SI_ET_NONE;
si->conn_retries = 0; /* used for logging too */
si->exp = TICK_ETERNITY;
enum si_state prev_state;/* SI_ST*, copy of previous state */
unsigned short flags; /* SI_FL_* */
unsigned int exp; /* wake up time for connect, queue, turn-around, ... */
- void *owner; /* generally a (struct task*) */
enum obj_type *end; /* points to the end point (connection or appctx) */
struct si_ops *ops; /* general operations at the stream interface layer */
channel_auto_close(&socket->s->req); /* let the producer forward close requests */
socket->s->si[0].flags = SI_FL_NONE;
- si_reset(&socket->s->si[0], socket->s->task);
+ si_reset(&socket->s->si[0]);
si_set_state(&socket->s->si[0], SI_ST_EST); /* connection established (resource exists) */
appctx = stream_int_register_handler(&socket->s->si[0], &update_applet);
* with the "struct server".
*/
socket->s->si[1].flags = SI_FL_ISBACK;
- si_reset(&socket->s->si[1], socket->s->task);
+ si_reset(&socket->s->si[1]);
si_set_state(&socket->s->si[1], SI_ST_INI);
socket->s->si[1].conn_retries = socket_proxy.conn_retries;
s->si[0].flags = SI_FL_NONE;
s->si[1].flags = SI_FL_ISBACK;
- si_reset(&s->si[0], t);
+ si_reset(&s->si[0]);
si_set_state(&s->si[0], SI_ST_EST);
if (s->fe->options2 & PR_O2_INDEPSTR)
appctx->st0 = PEER_SESS_ST_CONNECT;
appctx->ctx.peers.ptr = (void *)ps;
- si_reset(&s->si[1], t);
+ si_reset(&s->si[1]);
/* initiate an outgoing connection */
si_set_state(&s->si[1], SI_ST_ASS);
}
/* this part should be common with other protocols */
- si_reset(&s->si[0], t);
+ si_reset(&s->si[0]);
si_set_state(&s->si[0], SI_ST_EST);
/* attach the incoming connection to the stream interface now.
/* pre-initialize the other side's stream interface to an INIT state. The
* callbacks will be initialized before attempting to connect.
*/
- si_reset(&s->si[1], t);
+ si_reset(&s->si[1]);
si_detach(&s->si[1]);
if (likely(s->fe->options2 & PR_O2_INDEPSTR))