Home | History | Annotate | Download | only in extensions

Lines Matching full:value

21 "  --ttl-eq value	Match time to live value\n"
22 " --ttl-lt value Match TTL < value\n"
23 " --ttl-gt value Match TTL > value\n"
32 unsigned int value;
38 if (string_to_number(optarg, 0, 255, &value) == -1)
40 "ttl: Expected value between 0 and 255");
48 info->ttl = value;
51 if (string_to_number(optarg, 0, 255, &value) == -1)
53 "ttl: Expected value between 0 and 255");
60 info->ttl = value;
63 if (string_to_number(optarg, 0, 255, &value) == -1)
65 "ttl: Expected value between 0 and 255");
72 info->ttl = value;