Lines Matching refs:b1

1294     proxy_balancer *b1;
1305 b1 = (proxy_balancer *) base->elts;
1309 if (b1->hash.def == b2->hash.def && b1->hash.fnv == b2->hash.fnv) {
1311 *b2 = *b1;
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);
1322 && b1->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
1351 * to use tmp copy of b1 to detect changes done in override. */
1375 *(proxy_balancer *)apr_array_push(tocopy) = *b1;
1377 b1++;