/* * Data structure for representing http mirror information. * Contains essentially the same information as Mirrors.masterlist, * but only as much information as is necessary. */ struct mirror_t { char *site; char *country; char *root; int wildcard; }; /* The string defined below must match the string used in the templates * (http and ftp) for this option. */ #define MANUAL_ENTRY "manual" /* backward compatibility with old preseed files */ #define MANUAL_ENTRY_OLD "enter information manually" #define SUITE_LENGTH 32 /* Stack of suites */ static const char suites[][SUITE_LENGTH] = { /* higher preference */ "stable", "testing", "unstable" /* lower preference */ }; #define DEBCONF_BASE "mirror/"