Home | History | Annotate | Download | only in ip

Lines Matching refs:res

62 	unsigned long res;
65 res = RTN_LOCAL;
67 res = RTN_NAT;
70 res = RTN_BROADCAST;
72 res = RTN_ANYCAST;
74 res = RTN_MULTICAST;
76 res = RTN_PROHIBIT;
78 res = RTN_UNREACHABLE;
80 res = RTN_BLACKHOLE;
82 res = RTN_XRESOLVE;
84 res = RTN_UNICAST;
86 res = RTN_THROW;
88 res = strtoul(arg, &end, 0);
89 if (!end || end == arg || *end || res > 255)
92 *id = res;