const char *name)
{
if (type == GS_TYPE_INFER) {
- if (!strcmp(name, "legacy"))
- type = GS_TYPE_LEGACY;
- else if (!strcmp(name, "bridges"))
+ if (!strcmp(name, "bridges"))
type = GS_TYPE_BRIDGE;
else if (!strcmp(name, "restricted"))
type = GS_TYPE_RESTRICTED;
* Return a newly allocated string.
*/
STATIC char *
-getinfo_helper_format_single_entry_guard(const entry_guard_t *e,
- int legacy_guard)
+getinfo_helper_format_single_entry_guard(const entry_guard_t *e)
{
const char *status = NULL;
time_t when = 0;
char tbuf[ISO_TIME_LEN+1];
char nbuf[MAX_VERBOSE_NICKNAME_LEN+1];
- if (legacy_guard) {
- tor_assert_nonfatal_unreached();
- status = "BUG";
- } else {
+ if (1) {
/* modern case. This is going to be a bit tricky, since the status
* codes above weren't really intended for prop271 guards.
*
if (!strcmp(question,"entry-guards") ||
!strcmp(question,"helper-nodes")) {
const smartlist_t *guards;
- int legacy_mode;
- if (gs->type == GS_TYPE_LEGACY) {
- tor_assert_nonfatal_unreached();
- return 0;
- } else {
- guards = gs->sampled_entry_guards;
- legacy_mode = 0;
- }
+ guards = gs->sampled_entry_guards;
smartlist_t *sl = smartlist_new();
SMARTLIST_FOREACH_BEGIN(guards, const entry_guard_t *, e) {
- char *cp = getinfo_helper_format_single_entry_guard(e, legacy_mode);
+ char *cp = getinfo_helper_format_single_entry_guard(e);
smartlist_add(sl, cp);
} SMARTLIST_FOREACH_END(e);
*answer = smartlist_join_strings(sl, "", 0, NULL);
tor_assert(curr_guard_context);
- if (curr_guard_context->type == GS_TYPE_LEGACY) {
- tor_assert_nonfatal_unreached();
- } else {
- if (entry_guards_update_all(curr_guard_context))
- mark_circuits = 1;
- }
+ if (entry_guards_update_all(curr_guard_context))
+ mark_circuits = 1;
return mark_circuits;
}
/** Use the normal guard selection algorithm, taking our sample from the
* set of filtered nodes. */
GS_TYPE_RESTRICTED,
- /** Use the legacy (pre-prop271) guard selection algorithm and fields */
- GS_TYPE_LEGACY,
} guard_selection_type_t;
/**
entry_guard_t *guard,
unsigned old_state);
STATIC int entry_guard_has_higher_priority(entry_guard_t *a, entry_guard_t *b);
-STATIC char *getinfo_helper_format_single_entry_guard(const entry_guard_t *e,
- int is_legacy);
+STATIC char *getinfo_helper_format_single_entry_guard(const entry_guard_t *e);
#endif
struct bridge_info_t;
gs_df = get_guard_selection_by_name("default", GS_TYPE_NORMAL, 0);
tt_assert(gs_df != NULL);
tt_int_op(smartlist_len(gs_df->sampled_entry_guards), OP_EQ, 1);
- guard_selection_t *gs_legacy =
- get_guard_selection_by_name("legacy", GS_TYPE_LEGACY, 0);
- tt_assert(gs_legacy == NULL);
done:
config_free_lines(lines);