⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsrr_var.h

📁 radius协议源码÷The Radius Stack will connect to a Radius Server. This stack implementation is built upo
💻 H
字号:
/* * @(#) $Id: rsrr_var.h,v 1.1.1.1 2000/05/08 22:51:24 wenqing Exp $ *//************************* rsrr_var.h **************************** *                                                               * *  	        RSRR-specific definitions                        * *                                                               * *****************************************************************//****************************************************************************            RSVPD -- ReSerVation Protocol Daemon                USC Information Sciences Institute                Marina del Rey, California		RSRR written by: Daniel Zappala, April 1995  Copyright (c) 1996 by the University of Southern California  All rights reserved.  Permission to use, copy, modify, and distribute this software and its  documentation in source and binary forms for any purpose and without  fee is hereby granted, provided that both the above copyright notice  and this permission notice appear in all copies, and that any  documentation, advertising materials, and other materials related to  such distribution and use acknowledge that the software was developed  in part by the University of Southern California, Information  Sciences Institute.  The name of the University may not be used to  endorse or promote products derived from this software without  specific prior written permission.  THE UNIVERSITY OF SOUTHERN CALIFORNIA makes no representations about  the suitability of this software for any purpose.  THIS SOFTWARE IS  PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,  INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  Other copyrights might apply to parts of this software and are so  noted when applicable.********************************************************************//* RSRR things that are only needed by RSVP. */#define RSRR_S_NOTIFICATION_BIT   0#define RSRR_S_PINNING_BIT        1#define RSRR_R_FIRST_HOP_BIT      0#define RSRR_R_SECOND_HOP_BIT     1#define RSRR_QT_SIZE 32#define RSRR_QT_HASH(x) (x % RSRR_QT_SIZE)#define RSRR_QT_MAX 0xffffffff/* Table linking query ids to related RSVP structures. */struct rsrr_query_table {    u_long query_id;				/* Query ID of Route Query sent. */	void *ptrP;						/* Pointer to hold PSB address */	void *ptrS;						/* Pointer to hold Session address */    net_addr src;					/* Source address */    net_addr dst;					/* Destination address */    struct rsrr_query_table *next;	/* Next table entry */};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -