亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? radix.c

?? VxWorks BSP框架源代碼包含頭文件和驅動
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* radix.c - common routines for routing engine *//* Copyright 1990 - 2003 Wind River Systems, Inc. */#include "copyright_wrs.h"/* * Copyright (c) 1988, 1989, 1993 *	The Regents of the University of California.  All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *	This product includes software developed by the University of *	California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * *	@(#)radix.c	8.5 (Berkeley) 5/19/95 *//*modification history--------------------01e,13jan03,rae  Merged from velocecp branch01d,05nov01,vvv  fixed compilation warning01c,12oct01,rae  merge from truestack ver 01f, base 01b01b,02jul97,vin  fixed warnings.01a,03mar96,vin  created from BSD4.4lite2.*//* * Routines to build and maintain radix trees for routing lookups. */#include "vxWorks.h"#include "stdlib.h"#include "logLib.h"#include "string.h"#include "net/domain.h"#include "net/systm.h"#include "net/radix.h"#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET#include "wvNetLib.h"#endif#endif#ifdef ROUTER_STACKIMPORT struct radix_node * routeAlternateSearch (struct radix_node *);#endif /* ROUTER_STACK */#ifdef VIRTUAL_STACK#include "netinet/in.h" 	/* for sockaddr_in structure */#include "netinet/vsLib.h"#include "netinet/vsRadix.h"#include "netinet/vsNetCore.h" 	/* for domains definition */#elseint	max_keylen;struct radix_mask *rn_mkfreelist;struct radix_node_head *mask_rnhead;static char *addmask_key;static char *rn_zeros, *rn_ones;#endif#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET    /* Set common fields of event identifiers for this module. */LOCAL UCHAR wvNetModuleId = WV_NET_RADIX_MODULE;   /* Value for radix.c */LOCAL UCHAR wvNetLocalFilter = WV_NET_NONE;     /* Available event filter */LOCAL ULONG wvNetEventId;       /* Event identifier: see wvNetLib.h */#endif    /* INCLUDE_WVNET */#endifstatic char normal_chars[] = {0, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, -1};#define rn_masktop (mask_rnhead->rnh_treetop)#undef Bcmp#define Bcmp(a, b, l) (l == 0 ? 0 : bcmp((caddr_t)(a), (caddr_t)(b), (u_long)l))/* * The data structure for the keys is a radix tree with one way * branching removed.  The index rn_b at an internal node n represents a bit * position to be tested.  The tree is arranged so that all descendants * of a node n have keys whose bits all agree up to position rn_b - 1. * (We say the index of n is rn_b.) * * There is at least one descendant which has a one bit at position rn_b, * and at least one with a zero there. * * A route is determined by a pair of key and mask.  We require that the * bit-wise logical and of the key and mask to be the key. * We define the index of a route to associated with the mask to be * the first bit number in the mask where 0 occurs (with bit number 0 * representing the highest order bit). *  * We say a mask is normal if every bit is 0, past the index of the mask. * If a node n has a descendant (k, m) with index(m) == index(n) == rn_b, * and m is a normal mask, then the route applies to every descendant of n. * If the index(m) < rn_b, this implies the trailing last few bits of k * before bit b are all 0, (and hence consequently true of every descendant * of n), so the route applies to all descendants of the node as well. *  * Similar logic shows that a non-normal mask m such that * index(m) <= index(n) could potentially apply to many children of n. * Thus, for each non-host route, we attach its mask to a list at an internal * node as high in the tree as we can go.  * * The present version of the code makes use of normal routes in short- * circuiting an explict mask and compare operation when testing whether * a key satisfies a normal route, and also in remembering the unique leaf * that governs a subtree. */struct radix_node *rn_search(v_arg, head)	void *v_arg;	struct radix_node *head;{	register struct radix_node *x;	register caddr_t v;	for (x = head, v = v_arg; x->rn_b >= 0;) {		if (x->rn_bmask & v[x->rn_off])			x = x->rn_r;		else			x = x->rn_l;	}	return (x);}struct radix_node *rn_search_m(v_arg, head, m_arg)	struct radix_node *head;	void *v_arg, *m_arg;{	register struct radix_node *x;	register caddr_t v = v_arg, m = m_arg;	for (x = head; x->rn_b >= 0;) {		if ((x->rn_bmask & m[x->rn_off]) &&		    (x->rn_bmask & v[x->rn_off]))			x = x->rn_r;		else			x = x->rn_l;	}	return x;}intrn_refines(m_arg, n_arg)	void *m_arg, *n_arg;{	register caddr_t m = m_arg, n = n_arg;	register caddr_t lim, lim2 = lim = n + *(u_char *)n;	int longer = (*(u_char *)n++) - (int)(*(u_char *)m++);	int masks_are_equal = 1;	if (longer > 0)		lim -= longer;	while (n < lim) {		if (*n & ~(*m))			return 0;		if (*n++ != *m++)			masks_are_equal = 0;	}	while (n < lim2)		if (*n++)			return 0;	if (masks_are_equal && (longer < 0))		for (lim2 = m - longer; m < lim2; )			if (*m++)				return 1;	return (!masks_are_equal);}struct radix_node *rn_lookup(v_arg, m_arg, head)	void *v_arg, *m_arg;	struct radix_node_head *head;{	register struct radix_node *x;	caddr_t netmask = 0;	if (m_arg) {		if ((x = rn_addmask(m_arg, 1, head->rnh_treetop->rn_off)) == 0)			return (0);		netmask = x->rn_key;	}	x = rn_match(v_arg, head, 0);	if (x && netmask) {		while (x && x->rn_mask != netmask)			x = x->rn_dupedkey;	}	return x;}static intrn_satsifies_leaf(trial, leaf, skip)	char *trial;	register struct radix_node *leaf;	int skip;{	register char *cp = trial, *cp2 = leaf->rn_key, *cp3 = leaf->rn_mask;	char *cplim;	int length = min(*(u_char *)cp, *(u_char *)cp2);	if (cp3 == 0)		cp3 = rn_ones;	else		length = min(length, *(u_char *)cp3);	cplim = cp + length; cp3 += skip; cp2 += skip;	for (cp += skip; cp < cplim; cp++, cp2++, cp3++)		if ((*cp ^ *cp2) & *cp3)			return 0;	return 1;}struct radix_node *rn_match(v_arg, head, skipFlag)	void *v_arg;	struct radix_node_head *head;        int skipFlag;    /* ignore routes if interface disabled? */{	caddr_t v = v_arg;	register struct radix_node *t = head->rnh_treetop, *x;	register caddr_t cp = v, cp2;	caddr_t cplim;	struct radix_node *saved_t, *top = t;	int off = t->rn_off, vlen = *(u_char *)cp, matched_off;	register int test, b, rn_b;        struct radix_node * pNode;        BOOL fakeMismatchFlag = FALSE;	/*	 * Open code rn_search(v, top) to avoid overhead of extra	 * subroutine call.	 */	for (; t->rn_b >= 0; ) {		if (t->rn_bmask & cp[t->rn_off])			t = t->rn_r;		else			t = t->rn_l;	}	/*	 * See if we match exactly as a host destination	 * or at least learn how many bits match, for normal mask finesse.	 *	 * It doesn't hurt us to limit how many bytes to check	 * to the length of the mask, since if it matches we had a genuine	 * match and the leaf we have is the most specific one anyway;	 * if it didn't match with a shorter length it would fail	 * with a long one.  This wins big for class B&C netmasks which	 * are probably the most common case...	 */	if (t->rn_mask)		vlen = *(u_char *)t->rn_mask;	cp += off; cp2 = t->rn_key + off; cplim = v + vlen;	for (; cp < cplim; cp++, cp2++)		if (*cp != *cp2)			goto on1;	/*	 * This extra grot is in case we are explicitly asked	 * to look up the default.  Ugh!	 */	if ((t->rn_flags & RNF_ROOT) && t->rn_dupedkey)		t = t->rn_dupedkey;        if (skipFlag && t->rn_flags & RNF_BLACKHOLE)            {#ifdef ROUTER_STACK            pNode = routeAlternateSearch (t);            if (pNode)                return (pNode);#endif /* ROUTER_STACK */            matched_off = vlen;            b = 0;             fakeMismatchFlag = TRUE;            goto fakeMismatch;            } 	return t;on1:	test = (*cp ^ *cp2) & 0xff; /* find first bit that differs */	for (b = 7; (test >>= 1) > 0;)		b--;	matched_off = cp - v;fakeMismatch:	b += matched_off << 3;	rn_b = -1 - b;	/*	 * If there is a host route in a duped-key chain, it will be first.	 */	if ((saved_t = t)->rn_mask == 0)		t = t->rn_dupedkey;	for (; t; t = t->rn_dupedkey)            {            /*             * Ignore any route entries which use a disabled             * interface. Use an alternate route, if available.             */            pNode = t;#ifdef ROUTER_STACK            if (skipFlag && t->rn_flags & RNF_BLACKHOLE)                {                pNode = routeAlternateSearch (t);                if (pNode == NULL)                    continue;                }#endif /* ROUTER_STACK */		/*		 * Even if we don't match exactly as a host,		 * we may match if the leaf we wound up at is		 * a route to a net.		 */		if (t->rn_flags & RNF_NORMAL) {			if (rn_b <= t->rn_b)				return pNode;		} else if (rn_satsifies_leaf(v, t, matched_off))				return pNode;             }	t = saved_t;        if (fakeMismatchFlag)            rn_b = -1 - (t->rn_p->rn_b);	/* start searching up the tree */	do {		register struct radix_mask *m;		t = t->rn_p;		m = t->rn_mklist;		if (m) {			/*			 * If non-contiguous masks ever become important			 * we can restore the masking and open coding of			 * the search and satisfaction test and put the			 * calculation of "off" back before the "do".			 */			do {				if (m->rm_flags & RNF_NORMAL) {					if (rn_b <= m->rm_b)                        {                        if (skipFlag == FALSE ||                             !(m->rm_leaf->rn_flags & RNF_BLACKHOLE))                            {						return (m->rm_leaf);                            }#ifdef ROUTER_STACK                        else                            {                            /*                             * The matching route uses an invalid interface.                             * Use an alternate route entry, if available.                             */                            pNode = routeAlternateSearch (m->rm_leaf);                            if (pNode)                                return (pNode);                            }#endif /* ROUTER_STACK */                        }				} else {					off = min(t->rn_off, matched_off);					x = rn_search_m(v, t, m->rm_mask);					while (x && x->rn_mask != m->rm_mask)						x = x->rn_dupedkey;					if (x && rn_satsifies_leaf(v, x, off))                        {                        if (skipFlag == FALSE ||                             !(x->rn_flags & RNF_BLACKHOLE))                            {						    return x;                            }#ifdef ROUTER_STACK                        else                            {                            /*                             * The matching route uses an invalid interface.                             * Use an alternate route entry, if available.                             */                            pNode = routeAlternateSearch (x);                            if (pNode)                                return (pNode);                            }#endif /* ROUTER_STACK */                        }				}			m = m->rm_mklist;			} while (m);		}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区三区视频在线播放| 日韩专区一卡二卡| 国产精品国产自产拍在线| 国产精品电影一区二区三区| 亚洲一区二区三区四区在线免费观看| 亚洲成人av一区二区三区| 青娱乐精品视频| 成人午夜视频在线| 欧美亚洲综合一区| 精品成人佐山爱一区二区| 中文字幕不卡一区| 午夜精品成人在线视频| 亚洲一区视频在线| 国产一区二区三区免费播放| 91蜜桃视频在线| 337p日本欧洲亚洲大胆色噜噜| 亚洲三级免费观看| 福利电影一区二区三区| 精品免费99久久| 午夜激情一区二区| 欧美午夜影院一区| 一二三四社区欧美黄| 成人毛片老司机大片| 久久综合国产精品| 毛片av一区二区| 8x福利精品第一导航| 亚洲一区在线观看免费| 色婷婷激情久久| 日韩毛片一二三区| 成人污污视频在线观看| 国产亚洲va综合人人澡精品| 国产在线一区观看| 久久一区二区三区国产精品| 美女脱光内衣内裤视频久久网站 | 国产精品1024| 精品国产乱码久久久久久免费| 人人超碰91尤物精品国产| 欧美精品亚洲一区二区在线播放| 亚洲午夜激情网站| 欧美日韩视频在线观看一区二区三区 | 中文字幕乱码日本亚洲一区二区| 国产精品资源站在线| 亚洲欧美日韩在线| 91免费在线看| 亚洲一区视频在线| 欧美肥妇free| 美女看a上一区| 久久综合资源网| 成人久久视频在线观看| 亚洲色大成网站www久久九九| 91极品视觉盛宴| 日韩影院精彩在线| 精品国产乱码久久久久久久| 国产精品99久久久久| 中文字幕在线不卡一区| 在线一区二区三区四区| 欧美一区二区三区在线视频| 欧美精品一区二区三区高清aⅴ | 日韩一区精品字幕| 日韩视频一区二区| 国产乱妇无码大片在线观看| 中文字幕第一页久久| 日本伦理一区二区| 秋霞成人午夜伦在线观看| 久久免费视频色| 色悠悠亚洲一区二区| 免费成人深夜小野草| 国产亚洲欧美色| 欧美亚洲综合另类| 国产在线精品免费av| 伊人夜夜躁av伊人久久| 欧美大黄免费观看| 99精品桃花视频在线观看| 午夜激情一区二区三区| 国产日韩欧美一区二区三区乱码| 欧美一区二区三区的| 国产精品亚洲一区二区三区在线| 一区二区在线免费| 精品国产乱码久久久久久图片 | 亚洲视频电影在线| 91麻豆精品国产91久久久久| 国产成人亚洲精品青草天美| 天天综合网天天综合色| 国产亚洲污的网站| 欧美另类videos死尸| 99久久久久久| 狠狠色狠狠色综合日日91app| 亚洲精品国产精华液| 精品国产乱码久久久久久蜜臀| 欧美亚洲日本一区| 国产91清纯白嫩初高中在线观看| 日日噜噜夜夜狠狠视频欧美人| 久久久久久99精品| 欧美一区二区三区免费| 日本道精品一区二区三区| 国产成人高清视频| 免费人成精品欧美精品| 亚洲国产精品久久人人爱 | 日韩一级片在线播放| 91黄视频在线观看| 成人黄色av网站在线| 精品一区二区三区久久| 日韩av午夜在线观看| 洋洋av久久久久久久一区| 亚洲视频每日更新| 亚洲欧洲成人av每日更新| 久久―日本道色综合久久| 日韩视频免费观看高清在线视频| 欧美性一区二区| 欧亚一区二区三区| 91麻豆国产在线观看| 91老司机福利 在线| 成人av综合在线| www.色精品| 97久久久精品综合88久久| 成人av电影在线网| 国产69精品久久777的优势| 极品少妇xxxx精品少妇偷拍| 久久99精品一区二区三区三区| 日日摸夜夜添夜夜添国产精品| 亚洲成av人片一区二区梦乃| 亚洲中国最大av网站| 亚洲国产精品自拍| 亚洲国产乱码最新视频| 日韩高清不卡在线| 久久精品国产亚洲一区二区三区| 青青草国产成人av片免费| 欧美aⅴ一区二区三区视频| 久久99国产精品尤物| 韩国精品免费视频| 国产成人精品一区二区三区网站观看| 精品无码三级在线观看视频| 国产剧情在线观看一区二区| 国产成人午夜电影网| 99视频超级精品| 欧美做爰猛烈大尺度电影无法无天| 在线精品视频免费观看| 欧美精选一区二区| 久久久综合视频| 国产精品久久久久久久久免费相片| 亚洲色图在线看| 天天色天天爱天天射综合| 久久99精品久久久久久国产越南| 国产精品亚洲一区二区三区妖精 | 精品一区二区成人精品| 国产成人精品免费| 色婷婷综合久色| 欧美一级在线视频| 国产精品嫩草影院com| 亚洲最新视频在线观看| 另类小说视频一区二区| 成人综合婷婷国产精品久久| 色综合久久综合网97色综合| 91精品中文字幕一区二区三区| 久久亚洲一级片| 亚洲人成小说网站色在线 | 欧美日韩精品综合在线| 精品国产一区二区三区不卡| 亚洲欧美综合另类在线卡通| 日韩高清国产一区在线| www.欧美日韩国产在线| 日韩三级免费观看| 日韩久久一区二区| 久久99久国产精品黄毛片色诱| 成人av在线资源网| 日韩欧美一级片| 一区二区视频在线看| 国产综合色视频| 欧美日韩一二三| 国产精品国产精品国产专区不蜜| 免费成人在线观看视频| 91豆麻精品91久久久久久| 中文字幕乱码日本亚洲一区二区 | 亚洲国产一区在线观看| 国产精品99久久久久| 欧美一区二区在线播放| 夜色激情一区二区| 99久久久无码国产精品| 久久一区二区三区四区| 免费在线观看一区| 欧美日韩精品欧美日韩精品| 亚洲手机成人高清视频| 成人中文字幕合集| 国产欧美一区在线| 国产美女在线观看一区| 日韩欧美色综合| 午夜久久久久久久久| 欧美午夜免费电影| 亚洲中国最大av网站| 色综合久久久久久久久| 日本一区免费视频| 国产一区二区剧情av在线| 制服丝袜在线91| 亚洲综合色成人| 欧美亚洲动漫精品| 亚洲欧美在线另类| 国产在线视频精品一区| 久久噜噜亚洲综合| 美女久久久精品| 91精品国产欧美一区二区|