blob: 4e165f829d1880248367b6e317a2bf341a203077 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* BIRD -- OSPF
*
* (c) 1999 Ondrej Filip <feela@network.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef _BIRD_OSPF_H_
#define _BIRD_OSPF_H_
struct ospf_config {
struct proto_config c;
ip_addr area; /* Area ID */
};
#endif /* _BIRD_OSPF_H_ */
|