Browse Source
differentiated between 'active' and 'standby' in sn-selection-by-mac mode (#887)
pull/891/head
Logan oos Even
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/sn_selection.c
|
@ -232,7 +232,8 @@ extern char * sn_selection_criterion_str (n2n_edge_t *eee, selection_criterion_s |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
case SN_SELECTION_STRATEGY_MAC: { |
|
|
case SN_SELECTION_STRATEGY_MAC: { |
|
|
chars = snprintf(out, SN_SELECTION_CRITERION_BUF_SIZE, "%s", (int64_t)peer->selection_criterion > 0 ? "active" : ""); |
|
|
chars = snprintf(out, SN_SELECTION_CRITERION_BUF_SIZE, "%s", ((int64_t)peer->selection_criterion > 0 ? |
|
|
|
|
|
((peer == eee->curr_sn) ? "active" : "standby") : "")); |
|
|
break; |
|
|
break; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|