URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [drivers/] [isdn/] [hisax/] [isdnl3.h] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
/* $Id: isdnl3.h,v 1.1 2005-12-20 10:17:01 jcastillo Exp $ * $Log: not supported by cvs2svn $ * Revision 1.1.1.1 2001/09/10 07:44:18 simons * Initial import * * Revision 1.1.1.1 2001/07/02 17:58:32 simons * Initial revision * * Revision 1.3.2.3 1998/11/03 00:07:08 keil * certification related changes * fixed logging for smaller stack use * * Revision 1.3.2.2 1998/05/27 18:06:02 keil * HiSax 3.0 * * Revision 1.3.2.1 1997/10/17 22:14:08 keil * update to last hisax version * * Revision 2.0 1997/07/27 21:15:42 keil * New Callref based layer3 * * Revision 1.4 1997/06/26 11:20:57 keil * ? * * Revision 1.3 1997/04/06 22:54:17 keil * Using SKB's * * Revision 1.2 1997/01/21 22:31:28 keil * new statemachine; L3 timers * * Revision 1.1 1996/10/13 20:03:47 keil * Initial revision * * */ #define SBIT(state) (1<<state) #define ALL_STATES 0x00ffffff #define PROTO_DIS_EURO 0x08 #define L3_DEB_WARN 0x01 #define L3_DEB_PROTERR 0x02 #define L3_DEB_STATE 0x04 #define L3_DEB_CHARGE 0x08 struct stateentry { int state; int primitive; void (*rout) (struct l3_process *, u_char, void *); }; #define l3_debug(st, fmt, args...) HiSax_putstatus(st->l1.hardware, "l3 ", fmt, ## args) extern void newl3state(struct l3_process *pc, int state); extern void L3InitTimer(struct l3_process *pc, struct L3Timer *t); extern void L3DelTimer(struct L3Timer *t); extern int L3AddTimer(struct L3Timer *t, int millisec, int event); extern void StopAllL3Timer(struct l3_process *pc); extern struct sk_buff *l3_alloc_skb(int len); extern struct l3_process *new_l3_process(struct PStack *st, int cr); extern void release_l3_process(struct l3_process *p); extern struct l3_process *getl3proc(struct PStack *st, int cr); extern void l3_msg(struct PStack *st, int pr, void *arg);
Go to most recent revision | Compare with Previous | Blame | View Log