Home | History | Annotate | Download | only in extensions

Lines Matching full:value

27 "  --ttl-set value		Set TTL to <value 0-255>\n"
28 " --ttl-dec value Decrement TTL by <value 1-255>\n"
29 " --ttl-inc value Increment TTL by <value 1-255>\n"
38 unsigned int value;
47 "TTL: You must specify a value");
53 if (string_to_number(optarg, 0, 255, &value) == -1)
55 "TTL: Expected value between 0 and 255");
64 if (value == 0) {
73 if (value == 0) {
86 info->ttl = value;