CLEANUP: stream-int: rename si_reset() to si_init()

si_reset() function is only used when a stream-interface is allocated. Thus
rename it to si_init() insteaad.
This commit is contained in:
Christopher Faulet 2022-01-06 08:13:46 +01:00
parent cda94accb1
commit 014ac35eb2
2 changed files with 4 additions and 5 deletions

View File

@ -94,11 +94,10 @@ static inline struct stream_interface *si_opposite(struct stream_interface *si)
return ((si->flags & SI_FL_ISBACK) ? cs_strm(si->cs)->csf->si : cs_strm(si->cs)->csb->si);
}
/* initializes a stream interface in the SI_ST_INI state. It's detached from
* any endpoint and only keeps its side which is expected to have already been
* set.
/* initializes a stream interface in the SI_ST_INI state and create the event
* tasklet.
*/
static inline int si_reset(struct stream_interface *si)
static inline int si_init(struct stream_interface *si)
{
si->src = NULL;
si->dst = NULL;

View File

@ -111,7 +111,7 @@ struct stream_interface *si_new(struct conn_stream *cs)
if (unlikely(!si))
return NULL;
si->flags = SI_FL_NONE;
if (si_reset(si) < 0) {
if (si_init(si) < 0) {
pool_free(pool_head_streaminterface, si);
return NULL;
}