4cf49a4355
Been in production for 3 years now. Gives Instant Frame relay to if_sr and if_ar drivers, and PPPOE support soon. See: ftp://ftp.whistle.com/pub/archie/netgraph/index.html for on-line manual pages. Reviewed by: Doug Rabson (dfr@freebsd.org) Obtained from: Whistle CVS tree
24 lines
436 B
C
24 lines
436 B
C
/*
|
|
* if_ar.h
|
|
*
|
|
* Copyright (C) 1997-1999 Whistle Communications Inc.
|
|
* All rights reserved.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _I386_ISA_IF_AR_H_
|
|
#define _I386_ISA_IF_AR_H_
|
|
|
|
/* Node type name and type cookie */
|
|
#define NG_AR_NODE_TYPE "sync_ar"
|
|
#define NG_AR_COOKIE 860552149
|
|
|
|
/* Netgraph hooks */
|
|
#define NG_AR_HOOK_DEBUG "debug"
|
|
#define NG_AR_HOOK_CONTROL "control"
|
|
#define NG_AR_HOOK_RAW "rawdata"
|
|
|
|
#endif /* _I386_ISA_IF_AR_H_ */
|
|
|