diff options
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h new file mode 100644 index 00000000..4e165f82 --- /dev/null +++ b/proto/ospf/ospf.h @@ -0,0 +1,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_ */ |