]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: fix compilation error with DEBUG_FULL
authorCyril Bonté <cyril.bonte@free.fr>
Sun, 23 Sep 2012 12:19:12 +0000 (14:19 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 24 Sep 2012 18:36:39 +0000 (20:36 +0200)
Recent changes in structures broke the compilation when using DEBUG_FULL.
Let's update apply the changes also to the variables used in DPRINTF calls.

src/backend.c
src/dumpstats.c
src/proto_tcp.c
src/session.c

index 7ef0a4922b65bd4df2e688e03af0334ea6c25e6b..a6c001022b934e7faf1cceb9a05165b84509d75c 100644 (file)
@@ -1144,7 +1144,7 @@ int tcp_persist_rdp_cookie(struct session *s, struct channel *req, int an_bit)
                req,
                req->rex, req->wex,
                req->flags,
-               req->i,
+               req->buf.i,
                req->analysers);
 
        if (s->flags & SN_ASSIGNED)
index 48419c1ba3bf9f2efab12a5f4a2b8598c4f86e11..37dfcbc7dcac5bc999464903e02445466c4d99cd 100644 (file)
@@ -1614,7 +1614,7 @@ static void cli_io_handler(struct stream_interface *si)
  out:
        DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rqh=%d, rqs=%d, rh=%d, rs=%d\n",
                __FUNCTION__, __LINE__,
-               si->state, req->flags, res->flags, req->i, req->o, res->i, res->o);
+               si->state, req->flags, res->flags, req->buf.i, req->buf.o, res->buf.i, res->buf.o);
 
        if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
                /* check that we have released everything then unregister */
index 1e97e8ea84f29af9f43e99364b9eaf72a39dec7e..7c3258cc3195b1e9777f9f97c979a82ae409c227 100644 (file)
@@ -782,7 +782,7 @@ int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
                req,
                req->rex, req->wex,
                req->flags,
-               req->i,
+               req->buf.i,
                req->analysers);
 
        /* We don't know whether we have enough data, so must proceed
@@ -901,7 +901,7 @@ int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
                rep,
                rep->rex, rep->wex,
                rep->flags,
-               rep->i,
+               rep->buf.i,
                rep->analysers);
 
        /* We don't know whether we have enough data, so must proceed
index 6fb79e3f254714d60586a2e6bbcd1057f96b6107..b98b87825de4c3bc4b770de1f6b64fd05bf345fb 100644 (file)
@@ -863,7 +863,7 @@ static void sess_update_stream_int(struct session *s, struct stream_interface *s
                s->req, s->rep,
                s->req->rex, s->rep->wex,
                s->req->flags, s->rep->flags,
-               s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
+               s->req->buf.i, s->req->buf.o, s->rep->buf.i, s->rep->buf.o, s->rep->cons->state, s->req->cons->state);
 
        if (si->state == SI_ST_ASS) {
                /* Server assigned to connection request, we have to try to connect now */
@@ -1051,7 +1051,7 @@ static void sess_prepare_conn_req(struct session *s, struct stream_interface *si
                s->req, s->rep,
                s->req->rex, s->rep->wex,
                s->req->flags, s->rep->flags,
-               s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state);
+               s->req->buf.i, s->req->buf.o, s->rep->buf.i, s->rep->buf.o, s->rep->cons->state, s->req->cons->state);
 
        if (si->state != SI_ST_REQ)
                return;
@@ -1100,7 +1100,7 @@ static int process_switching_rules(struct session *s, struct channel *req, int a
                req,
                req->rex, req->wex,
                req->flags,
-               req->i,
+               req->buf.i,
                req->analysers);
 
        /* now check whether we have some switching rules for this request */
@@ -1195,7 +1195,7 @@ static int process_server_rules(struct session *s, struct channel *req, int an_b
                req,
                req->rex, req->wex,
                req->flags,
-               req->i + req->o,
+               req->buf.i + req->buf.o,
                req->analysers);
 
        if (!(s->flags & SN_ASSIGNED)) {
@@ -1244,7 +1244,7 @@ static int process_sticking_rules(struct session *s, struct channel *req, int an
                req,
                req->rex, req->wex,
                req->flags,
-               req->i,
+               req->buf.i,
                req->analysers);
 
        list_for_each_entry(rule, &px->sticking_rules, list) {
@@ -1334,7 +1334,7 @@ static int process_store_rules(struct session *s, struct channel *rep, int an_bi
                rep,
                rep->rex, rep->wex,
                rep->flags,
-               rep->i,
+               rep->buf.i,
                rep->analysers);
 
        list_for_each_entry(rule, &px->storersp_rules, list) {
@@ -1581,7 +1581,7 @@ struct task *process_session(struct task *t)
                s->req, s->rep,
                s->req->rex, s->rep->wex,
                s->req->flags, s->rep->flags,
-               s->req->i, s->req->o, s->rep->i, s->rep->o, s->rep->cons->state, s->req->cons->state,
+               s->req->buf.i, s->req->buf.o, s->rep->buf.i, s->rep->buf.o, s->rep->cons->state, s->req->cons->state,
                s->rep->cons->err_type, s->req->cons->err_type,
                s->req->cons->conn_retries);