ospf_dump.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:4k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPFd dump routine.
  3.  * Copyright (C) 1999 Toshiaki Takada
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA. 
  21.  */
  22. #ifndef _ZEBRA_OSPF_DUMP_H
  23. #define _ZEBRA_OSPF_DUMP_H
  24. /* Debug Flags. */
  25. #define OSPF_DEBUG_HELLO 0x01
  26. #define OSPF_DEBUG_DB_DESC 0x02
  27. #define OSPF_DEBUG_LS_REQ 0x04
  28. #define OSPF_DEBUG_LS_UPD 0x08
  29. #define OSPF_DEBUG_LS_ACK 0x10
  30. #define OSPF_DEBUG_ALL 0x1f
  31. #define OSPF_DEBUG_SEND 0x01
  32. #define OSPF_DEBUG_RECV 0x02
  33. #define OSPF_DEBUG_SEND_RECV    0x03
  34. #define OSPF_DEBUG_DETAIL 0x04
  35. #define OSPF_DEBUG_ISM_STATUS 0x01
  36. #define OSPF_DEBUG_ISM_EVENTS 0x02
  37. #define OSPF_DEBUG_ISM_TIMERS 0x04
  38. #define OSPF_DEBUG_ISM 0x07
  39. #define OSPF_DEBUG_NSM_STATUS 0x01
  40. #define OSPF_DEBUG_NSM_EVENTS 0x02
  41. #define OSPF_DEBUG_NSM_TIMERS   0x04
  42. #define OSPF_DEBUG_NSM 0x07
  43. #define OSPF_DEBUG_LSA_GENERATE 0x01
  44. #define OSPF_DEBUG_LSA_FLOODING 0x02
  45. #define OSPF_DEBUG_LSA_INSTALL  0x04
  46. #define OSPF_DEBUG_LSA_REFRESH  0x08
  47. #define OSPF_DEBUG_LSA 0x0F
  48. #define OSPF_DEBUG_ZEBRA_INTERFACE     0x01
  49. #define OSPF_DEBUG_ZEBRA_REDISTRIBUTE  0x02
  50. #define OSPF_DEBUG_ZEBRA        0x03
  51. #define OSPF_DEBUG_EVENT        0x01
  52. #define OSPF_DEBUG_NSSA 0x02
  53. /* Macro for setting debug option. */
  54. #define CONF_DEBUG_PACKET_ON(a, b)     conf_debug_ospf_packet[a] |= (b)
  55. #define CONF_DEBUG_PACKET_OFF(a, b)     conf_debug_ospf_packet[a] &= ~(b)
  56. #define TERM_DEBUG_PACKET_ON(a, b)     term_debug_ospf_packet[a] |= (b)
  57. #define TERM_DEBUG_PACKET_OFF(a, b)     term_debug_ospf_packet[a] &= ~(b)
  58. #define DEBUG_PACKET_ON(a, b) 
  59.     do { 
  60.       CONF_DEBUG_PACKET_ON(a, b); 
  61.       TERM_DEBUG_PACKET_ON(a, b); 
  62.     } while (0)
  63. #define DEBUG_PACKET_OFF(a, b) 
  64.     do { 
  65.       CONF_DEBUG_PACKET_OFF(a, b); 
  66.       TERM_DEBUG_PACKET_OFF(a, b); 
  67.     } while (0)
  68. #define CONF_DEBUG_ON(a, b)  conf_debug_ospf_ ## a |= (OSPF_DEBUG_ ## b)
  69. #define CONF_DEBUG_OFF(a, b)  conf_debug_ospf_ ## a &= ~(OSPF_DEBUG_ ## b)
  70. #define TERM_DEBUG_ON(a, b)  term_debug_ospf_ ## a |= (OSPF_DEBUG_ ## b)
  71. #define TERM_DEBUG_OFF(a, b)  term_debug_ospf_ ## a &= ~(OSPF_DEBUG_ ## b)
  72. #define DEBUG_ON(a, b) 
  73.      do { 
  74.        CONF_DEBUG_ON(a, b); 
  75.        TERM_DEBUG_ON(a, b); 
  76.      } while (0)
  77. #define DEBUG_OFF(a, b) 
  78.      do { 
  79.        CONF_DEBUG_OFF(a, b); 
  80.        TERM_DEBUG_OFF(a, b); 
  81.      } while (0)
  82. /* Macro for checking debug option. */
  83. #define IS_DEBUG_OSPF_PACKET(a, b) 
  84. (term_debug_ospf_packet[a] & OSPF_DEBUG_ ## b)
  85. #define IS_DEBUG_OSPF(a, b) 
  86. (term_debug_ospf_ ## a & OSPF_DEBUG_ ## b)
  87. #define IS_DEBUG_OSPF_EVENT IS_DEBUG_OSPF(event,EVENT)
  88. #define IS_DEBUG_OSPF_NSSA  IS_DEBUG_OSPF(event,NSSA)
  89. #define IS_CONF_DEBUG_OSPF_PACKET(a, b) 
  90. (conf_debug_ospf_packet[a] & OSPF_DEBUG_ ## b)
  91. #define IS_CONF_DEBUG_OSPF(a, b) 
  92. (conf_debug_ospf_ ## a & OSPF_DEBUG_ ## b)
  93. struct stream;
  94. #define AREA_NAME(A)    ospf_area_name_string ((A))
  95. #define IF_NAME(I)      ospf_if_name_string ((I))
  96. /* Extern debug flag. */
  97. extern unsigned long term_debug_ospf_packet[];
  98. extern unsigned long term_debug_ospf_event;
  99. extern unsigned long term_debug_ospf_ism;
  100. extern unsigned long term_debug_ospf_nsm;
  101. extern unsigned long term_debug_ospf_lsa;
  102. extern unsigned long term_debug_ospf_zebra;
  103. extern unsigned long term_debug_ospf_nssa;
  104. /* Message Strings. */
  105. extern char *ospf_packet_type_str[];
  106. extern char *ospf_lsa_type_str[];
  107. /* Prototypes. */
  108. char *ospf_area_name_string (struct ospf_area *);
  109. char *ospf_area_desc_string (struct ospf_area *);
  110. char *ospf_if_name_string (struct ospf_interface *);
  111. void ospf_nbr_state_message (struct ospf_neighbor *, char *, size_t);
  112. char *ospf_options_dump (u_char);
  113. char *ospf_timer_dump (struct thread *, char *, size_t);
  114. void ospf_ip_header_dump (struct stream *);
  115. void ospf_packet_dump (struct stream *);
  116. void ospf_lsa_header_dump (struct lsa_header *);
  117. void debug_init ();
  118. #endif /* _ZEBRA_OSPF_DUMP_H */