HomeSort by relevance Sort by last modified time
    Searched defs:route (Results 1 - 5 of 5) sorted by null

  /onnv/onnv-gate/usr/src/uts/common/inet/kifconf/
kifconf.c 30 #include <net/route.h>
72 struct rtentry route; local
146 (void) memset(&route, 0, sizeof (route));
147 rt_sin = (struct sockaddr_in *)&route.rt_dst;
150 rt_sin = (struct sockaddr_in *)&route.rt_gateway;
152 route.rt_flags = RTF_GATEWAY | RTF_UP;
153 sbuf.buf = (caddr_t)&route;
154 sbuf.maxlen = sbuf.len = sizeof (route);
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/
hostconfig.c 51 #include <net/route.h>
284 struct rtentry route; local
288 (void) memset(&route, 0, sizeof (route));
290 /* route destination is "default" - zero */
292 sin = (struct sockaddr_in *)&route.rt_dst;
296 sin = (struct sockaddr_in *)&route.rt_gateway;
300 route.rt_flags = RTF_GATEWAY | RTF_UP;
306 if (ioctl(s, SIOCADDRT, (char *)&route) == -1) {
307 perror("add default route");
    [all...]
Makefile 42 ROOTFS_PROG= hostconfig route soconfig
43 SBINLINKS= hostconfig route
50 in.rwhod in.telnetd in.tftpd ipaddrsel route
53 in.tftpd ipaddrsel route
56 TSNETPROG= route
81 ipaddrsel route \
109 POFILES= 6to4relay.po if_mpadm.po in.comsat.po ipaddrsel.po route.po
153 route := CPPFLAGS += -DNDEBUG macro
255 $(LINT.c) route.c $(LDLIBS) -lsocket -lnsl -ltsnet
  /onnv/onnv-gate/usr/src/lib/libsip/common/
sip_dialog.c 70 * Route set structure
163 * Get the route information from the 'value' and add it to the route
206 * Check if the 'lr' param is present for this route.
222 * Depending on the route-set, determine the request URI.
254 * Free the route set.
271 * Recompute route-set
297 * If the route set is empty, the UAC MUST place the remote target URI
298 * into the Request-URI. The UAC MUST NOT add a Route header field to
301 * If the route set is not empty, and the first URI in the route se
325 sip_dlg_route_set_t *route; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/net/
route.h 58 * A route consists of a destination address and a reference
62 struct route { struct
78 uint32_t rmx_expire; /* lifetime for route, e.g. redirect */
84 uint32_t rmx_pksent; /* packets sent using this route */
92 * preferring the former if available. For each route we infer
94 * the route was entered. Routes that forward packets through
115 #define RTF_UP 0x1 /* route usable */
128 #define RTF_PRIVATE 0x2000 /* do not advertise this route */
169 #define RTM_ADD 0x1 /* Add Route */
170 #define RTM_DELETE 0x2 /* Delete Route */
    [all...]

Completed in 3600 milliseconds