lmgr.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: lmgr.c,v 1.1.4.1 2001/11/20 14:19:36 kai Exp $
  2.  *
  3.  * Layermanagement module
  4.  *
  5.  * Author       Karsten Keil
  6.  * Copyright    by Karsten Keil      <keil@isdn4linux.de>
  7.  * 
  8.  * This software may be used and distributed according to the terms
  9.  * of the GNU General Public License, incorporated herein by reference.
  10.  *
  11.  */
  12. #define __NO_VERSION__
  13. #include "hisax.h"
  14. static void
  15. error_handling_dchan(struct PStack *st, int Error)
  16. {
  17. switch (Error) {
  18. case 'C':
  19. case 'D':
  20. case 'G':
  21. case 'H':
  22. st->l2.l2tei(st, MDL_ERROR | REQUEST, NULL);
  23. break;
  24. }
  25. }
  26. static void
  27. hisax_manager(struct PStack *st, int pr, void *arg)
  28. {
  29. long Code;
  30. switch (pr) {
  31. case (MDL_ERROR | INDICATION):
  32. Code = (long) arg;
  33. HiSax_putstatus(st->l1.hardware, "manager: MDL_ERROR",
  34. " %c %s", (char)Code, 
  35. test_bit(FLG_LAPD, &st->l2.flag) ?
  36. "D-channel" : "B-channel");
  37. if (test_bit(FLG_LAPD, &st->l2.flag))
  38. error_handling_dchan(st, Code);
  39. break;
  40. }
  41. }
  42. void
  43. setstack_manager(struct PStack *st)
  44. {
  45. st->ma.layer = hisax_manager;
  46. }