~ubuntu-branches/ubuntu/trusty/haproxy/trusty-backports

« back to all changes in this revision

Viewing changes to src/proto_tcp.c

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Cornet
  • Date: 2010-06-18 00:42:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100618004253-ygka2bh6nblkhfj2
Tags: 1.4.8-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
692
692
                                buffer_abort(s->rep);
693
693
                                req->analysers = 0;
694
694
 
695
 
                                s->fe->counters.failed_req++;
 
695
                                s->fe->counters.denied_req++;
696
696
                                if (s->listener->counters)
697
 
                                        s->listener->counters->failed_req++;
 
697
                                        s->listener->counters->denied_req++;
698
698
 
699
699
                                if (!(s->flags & SN_ERR_MASK))
700
700
                                        s->flags |= SN_ERR_PRXCOND;
1138
1138
static struct acl_kw_list acl_kws = {{ },{
1139
1139
        { "req_len",      acl_parse_int,        acl_fetch_req_len,     acl_match_int, ACL_USE_L4REQ_VOLATILE },
1140
1140
        { "req_ssl_ver",  acl_parse_dotted_ver, acl_fetch_req_ssl_ver, acl_match_int, ACL_USE_L4REQ_VOLATILE },
1141
 
        { "req_rdp_cookie",     acl_parse_str,  acl_fetch_rdp_cookie,     acl_match_str, ACL_USE_L4REQ_VOLATILE },
 
1141
        { "req_rdp_cookie",     acl_parse_str,  acl_fetch_rdp_cookie,     acl_match_str, ACL_USE_L4REQ_VOLATILE|ACL_MAY_LOOKUP },
1142
1142
        { "req_rdp_cookie_cnt", acl_parse_int,  acl_fetch_rdp_cookie_cnt, acl_match_int, ACL_USE_L4REQ_VOLATILE },
1143
1143
        { NULL, NULL, NULL, NULL },
1144
1144
}};