lqr.h (879ed6fa82fdf598991303a6e16a156e6f2f9321) | lqr.h (2764b86afdc99a30f4b1a4da2c04db8aa7aa785d) |
---|---|
1/* 2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp) 3 * 4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd. 5 * 6 * Redistribution and use in source and binary forms are permitted 7 * provided that the above copyright notice and this paragraph are 8 * duplicated in all such forms and that any documentation, 9 * advertising materials, and other materials related to such 10 * distribution and use acknowledge that the software was developed 11 * by the Internet Initiative Japan. The name of the 12 * IIJ may not be used to endorse or promote products derived 13 * from this software without specific prior written permission. 14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 17 * | 1/* 2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp) 3 * 4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd. 5 * 6 * Redistribution and use in source and binary forms are permitted 7 * provided that the above copyright notice and this paragraph are 8 * duplicated in all such forms and that any documentation, 9 * advertising materials, and other materials related to such 10 * distribution and use acknowledge that the software was developed 11 * by the Internet Initiative Japan. The name of the 12 * IIJ may not be used to endorse or promote products derived 13 * from this software without specific prior written permission. 14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 17 * |
18 * $Id: lqr.h,v 1.12.2.1 1998/01/29 00:49:26 brian Exp $ | 18 * $Id: lqr.h,v 1.12.2.2 1998/03/13 00:44:12 brian Exp $ |
19 * 20 * TODO: 21 */ 22 23/* 24 * Structure of LQR packet defined in RFC1989 25 */ 26struct lqrdata { --- 12 unchanged lines hidden (view full) --- 39}; 40 41/* 42 * We support LQR and ECHO as LQM method 43 */ 44#define LQM_LQR 1 45#define LQM_ECHO 2 46 | 19 * 20 * TODO: 21 */ 22 23/* 24 * Structure of LQR packet defined in RFC1989 25 */ 26struct lqrdata { --- 12 unchanged lines hidden (view full) --- 39}; 40 41/* 42 * We support LQR and ECHO as LQM method 43 */ 44#define LQM_LQR 1 45#define LQM_ECHO 2 46 |
47struct mbuf; |
|
47struct physical; 48struct lcp; 49struct fsm; 50 51extern void LqrDump(const char *, const struct lqrdata *); 52extern void LqrChangeOrder(struct lqrdata *, struct lqrdata *); 53extern void StartLqm(struct lcp *); 54extern void StopLqr(struct physical *, int); 55extern void StopLqrTimer(struct physical *); 56extern void RecvEchoLqr(struct fsm *, struct mbuf *); 57extern void LqrInput(struct physical *, struct mbuf *); | 48struct physical; 49struct lcp; 50struct fsm; 51 52extern void LqrDump(const char *, const struct lqrdata *); 53extern void LqrChangeOrder(struct lqrdata *, struct lqrdata *); 54extern void StartLqm(struct lcp *); 55extern void StopLqr(struct physical *, int); 56extern void StopLqrTimer(struct physical *); 57extern void RecvEchoLqr(struct fsm *, struct mbuf *); 58extern void LqrInput(struct physical *, struct mbuf *); |