forked from Mirror/frr
2004-10-07 Paul Jakma <paul@dishone.st>
* ospf_snmp.c: Missed list typedef update * ospf_dump.c: Include sockopt.h for header swab functions.
This commit is contained in:
parent
7fd63b3843
commit
aa20c6f179
|
@ -1,3 +1,8 @@
|
||||||
|
2004-10-07 Paul Jakma <paul@dishone.st>
|
||||||
|
|
||||||
|
* ospf_snmp.c: Missed list typedef update
|
||||||
|
* ospf_dump.c: Include sockopt.h for header swab functions.
|
||||||
|
|
||||||
2004-10-05 Paul Jakma <paul@dishone.st>
|
2004-10-05 Paul Jakma <paul@dishone.st>
|
||||||
|
|
||||||
* ospf_packet.c: replace ospf_swap_iph_to... with
|
* ospf_packet.c: replace ospf_swap_iph_to... with
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include "command.h"
|
#include "command.h"
|
||||||
#include "stream.h"
|
#include "stream.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
#include "sockopt.h"
|
||||||
|
|
||||||
#include "ospfd/ospfd.h"
|
#include "ospfd/ospfd.h"
|
||||||
#include "ospfd/ospf_interface.h"
|
#include "ospfd/ospf_interface.h"
|
||||||
|
|
|
@ -498,7 +498,7 @@ struct variable ospf_variables[] =
|
||||||
int
|
int
|
||||||
ospf_admin_stat (struct ospf *ospf)
|
ospf_admin_stat (struct ospf *ospf)
|
||||||
{
|
{
|
||||||
listnode node;
|
struct listnode *node;
|
||||||
struct ospf_interface *oi;
|
struct ospf_interface *oi;
|
||||||
|
|
||||||
if (ospf == NULL)
|
if (ospf == NULL)
|
||||||
|
@ -619,7 +619,7 @@ struct ospf_area *
|
||||||
ospf_area_lookup_next (struct ospf *ospf, struct in_addr *area_id, int first)
|
ospf_area_lookup_next (struct ospf *ospf, struct in_addr *area_id, int first)
|
||||||
{
|
{
|
||||||
struct ospf_area *area;
|
struct ospf_area *area;
|
||||||
listnode node;
|
struct listnode *node;
|
||||||
|
|
||||||
if (ospf == NULL)
|
if (ospf == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -755,7 +755,7 @@ struct ospf_area *
|
||||||
ospf_stub_area_lookup_next (struct in_addr *area_id, int first)
|
ospf_stub_area_lookup_next (struct in_addr *area_id, int first)
|
||||||
{
|
{
|
||||||
struct ospf_area *area;
|
struct ospf_area *area;
|
||||||
listnode node;
|
struct listnode *node;
|
||||||
struct ospf *ospf;
|
struct ospf *ospf;
|
||||||
|
|
||||||
ospf = ospf_lookup ();
|
ospf = ospf_lookup ();
|
||||||
|
|
Loading…
Reference in a new issue