Lines Matching defs:file
33 "[+DESCRIPTION?\btestptv\b loads the ipv6 prefixes in \aprefix-file\a "
35 "\aaddress-file\a. If \aaddress-file\a is omitted or \b-\b then the "
39 "[+?\aprefix-file\a must contain a sequence of lines with the \bipv6\b "
40 "prefix in the first space separated field. Each \aaddress-file\a must "
46 "\nprefix-file [ address-file ... ]\n"
55 char* file;
86 if (!(file = *argv++))
88 if (!(sp = sfopen(0, file, "r")))
89 error(ERROR_SYSTEM|3, "%s: cannot read prefix file", file);
108 file = *argv++;
111 if (!file || streq(file, "-"))
113 else if (!(sp = sfopen(0, file, "r")))
114 error(ERROR_SYSTEM|3, "%s: cannot read address file", file);
124 } while (file && (file = *argv++));