Lines Matching defs:b2

1295     proxy_balancer *b2;
1307 b2 = (proxy_balancer *) overrides->elts;
1309 if (b1->hash.def == b2->hash.def && b1->hash.fnv == b2->hash.fnv) {
1310 tmp = *b2;
1311 *b2 = *b1;
1312 b2->s = tmp.s;
1314 /* For shared memory entries, b2->s belongs to override
1317 if (*b2->s->sticky == 0 && *b1->s->sticky) {
1318 PROXY_STRNCPY(b2->s->sticky_path, b1->s->sticky_path);
1319 PROXY_STRNCPY(b2->s->sticky, b1->s->sticky);
1321 if (!b2->s->sticky_separator_set
1323 b2->s->sticky_separator_set = b1->s->sticky_separator_set;
1324 b2->s->sticky_separator = b1->s->sticky_separator;
1326 if (!b2->s->timeout && b1->s->timeout) {
1327 b2->s->timeout = b1->s->timeout;
1329 if (!b2->s->max_attempts_set && b1->s->max_attempts_set) {
1330 b2->s->max_attempts_set = b1->s->max_attempts_set;
1331 b2->s->max_attempts = b1->s->max_attempts;
1333 if (!b2->s->nonce_set && b1->s->nonce_set) {
1334 b2->s->nonce_set = b1->s->nonce_set;
1335 PROXY_STRNCPY(b2->s->nonce, b1->s->nonce);
1337 if (!b2->s->sticky_force_set && b1->s->sticky_force_set) {
1338 b2->s->sticky_force_set = b1->s->sticky_force_set;
1339 b2->s->sticky_force = b1->s->sticky_force;
1341 if (!b2->s->scolonsep_set && b1->s->scolonsep_set) {
1342 b2->s->scolonsep_set = b1->s->scolonsep_set;
1343 b2->s->scolonsep = b1->s->scolonsep;
1345 if (!b2->s->forcerecovery_set && b1->s->forcerecovery_set) {
1346 b2->s->forcerecovery_set = b1->s->forcerecovery_set;
1347 b2->s->forcerecovery = b1->s->forcerecovery;
1350 /* For non-shared memory entries, b2 is copy of b1, so we have
1353 b2->lbmethod_set = tmp.lbmethod_set;
1354 b2->lbmethod = tmp.lbmethod;
1357 b2->growth_set = tmp.growth_set;
1358 b2->growth = tmp.growth;
1361 b2->failontimeout_set = tmp.failontimeout_set;
1362 b2->failontimeout = tmp.failontimeout;
1365 apr_array_cat(tmp.errstatuses, b2->errstatuses);
1366 b2->errstatuses = tmp.errstatuses;
1372 b2++;