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

« back to all changes in this revision

Viewing changes to include/types/proxy.h

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Cornet
  • Date: 2009-10-19 22:31:45 UTC
  • mfrom: (1.1.7 upstream) (2.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20091019223145-259fs24dejjixo1f
New upstream bugfix release

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
#define PR_O2_RSPBUG_OK 0x00000010      /* let buggy responses pass through */
118
118
#define PR_O2_NOLOGNORM 0x00000020      /* don't log normal traffic, only errors and retries */
119
119
#define PR_O2_LOGERRORS 0x00000040      /* log errors and retries at level LOG_ERR */
 
120
/* 0x80..0x800 already used in 1.4 */
 
121
#define PR_O2_INDEPSTR  0x00001000      /* independant streams, don't update rex on write */
120
122
 
121
123
/* This structure is used to apply fast weighted round robin on a server group */
122
124
struct fwrr_group {
223
225
                int httpreq;                    /* maximum time for complete HTTP request */
224
226
                int check;                      /* maximum time for complete check */
225
227
        } timeout;
226
 
        char *id;                               /* proxy id */
 
228
        char *id, *desc;                        /* proxy id (name) and description */
227
229
        struct list pendconns;                  /* pending connections with no server assigned yet */
228
230
        int nbpend, nbpend_max;                 /* number of pending connections with no server assigned yet */
229
231
        int totpend;                            /* total number of pending connections on this instance (for stats) */