Diff for /embedaddon/quagga/ospfd/ospf_packet.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 17:26:12 version 1.1.1.2, 2012/05/29 11:53:41
Line 46 Line 46
   
 #define OSPF_HELLO_REPLY_DELAY          1  #define OSPF_HELLO_REPLY_DELAY          1
   
   /* Return values of functions involved in packet verification, see ospf6d. */
   #define MSG_OK    0
   #define MSG_NG    1
   
 struct ospf_packet  struct ospf_packet
 {  {
   struct ospf_packet *next;    struct ospf_packet *next;
Line 117  struct ospf_db_desc Line 121  struct ospf_db_desc
   u_int32_t dd_seqnum;    u_int32_t dd_seqnum;
 };  };
   
   struct ospf_ls_update
   {
     u_int32_t num_lsas;
   };
   
 /* Macros. */  /* Macros. */
 /* XXX Perhaps obsolete; function in ospf_packet.c */  /* XXX Perhaps obsolete; function in ospf_packet.c */
Line 162  extern int ospf_ls_upd_timer (struct thread *); Line 170  extern int ospf_ls_upd_timer (struct thread *);
 extern int ospf_ls_ack_timer (struct thread *);  extern int ospf_ls_ack_timer (struct thread *);
 extern int ospf_poll_timer (struct thread *);  extern int ospf_poll_timer (struct thread *);
 extern int ospf_hello_reply_timer (struct thread *);  extern int ospf_hello_reply_timer (struct thread *);
   
   extern const struct message ospf_packet_type_str[];
   extern const size_t ospf_packet_type_str_max;
   
 #endif /* _ZEBRA_OSPF_PACKET_H */  #endif /* _ZEBRA_OSPF_PACKET_H */

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>