summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospf6d/area.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Area is now part of struct ifacedenis2019-12-231-13/+18
| | | | OK remi@
* area_ospf_options() should not return network byte order options. Insteadclaudio2008-12-281-2/+2
| | | | | | the callers should take care of getting the byte order right. While there remove the opts[123] from the hello_hdr and use LSA_24_* to handle this nasty fields instead. Now router LSA have the correct flags set.
* area_ospf_options() should return the options in network byte order.claudio2007-10-111-2/+2
|
* From ospfd:claudio2007-10-111-1/+12
| | | | | | | | | Bye bye global ospf options. OSPF options are per area (at least the one flag that we set). So introduce a area_ospf_options() function that will return the correct flags for each area. This makes stub area support a lot easier. Don't check for OSPF_OPTION_E in the parent. OSPF_OPTION_E is per area and so the parent process has no way to know if it should redistribute or not.
* Welcome ospf6dnorby2007-10-081-0/+117
The new ospf6d daemon will support OSPFv3, basically OSPF for IPv6 networks. It is heavily based on ospfd(8), it is more or less a copy and paste of it. Currently some unneeded stuff has been removed and the trasition from IPv4 to IPv6 has begun. ospf6d is not very usefull at the moment, it is being imported to allow more people to work on it concurrently. Not yet connected to the builds. ok claudio@ dlg@