summaryrefslogtreecommitdiff
path: root/usr.sbin/ospfd
AgeCommit message (Expand)Author
2006-02-21Correctly count the number of LSAs in the retransmission list. OK norby@Claudio Jeker
2006-02-19Keep track of the duration of our relationships with neighbors.Esben Norby
2006-02-19Do not kick the adj_timer for neighbors that are in state 2-Way.Esben Norby
2006-02-19Do not traverse the entire LS retransmission list to figure out how manyEsben Norby
2006-02-19Do not allocate a new chunk of memory every time we receive a packet.Esben Norby
2006-02-15Do not try to dirty an area when adding LSA ext.Esben Norby
2006-02-10ospfd does not need fd passing via the imsg framework so remove that codeClaudio Jeker
2006-02-10If ABR only look in the backbone area 0.0.0.0 for summary LSA. OK norby@Claudio Jeker
2006-02-09Don't calculate all areas every time the link state database is updated,Esben Norby
2006-02-09Prevent the neighbor FSM from getting stuck forever in state EXSTART.Esben Norby
2006-02-03Cleanup and "simplify" iso checksum implementation. OK norby@Claudio Jeker
2006-02-02Be less verbose about DR/BDR selection this seems to be rock solid now.Claudio Jeker
2006-02-02zap md_list_empty, found by lint.Esben Norby
2006-02-02zap cand_list_empty, found by lint.Esben Norby
2006-02-01spf_calc should only do what the name says - calculate the spf tree.Esben Norby
2006-02-01Wrong type, found by lint.Esben Norby
2006-02-01variable naming, a -> addr.Esben Norby
2006-02-01zap unused function.Esben Norby
2006-01-26Separate route table calculations from the SPF calculation.Esben Norby
2006-01-24Correct debug textEsben Norby
2006-01-24Fix bad indent.Esben Norby
2006-01-24Split SPF calc and AS Ext calc.Esben Norby
2006-01-23Kill stupid comment. "not reached" after a continue is superfluous.Claudio Jeker
2006-01-20Explicitly include limits.h if we are going to use its contents.Todd C. Miller
2006-01-12Rewrite the redistribute code. The previous implementation was stupid andClaudio Jeker
2006-01-12Change inet_addr("127.0.0.1") into htonl(INADDR_LOOPBACK) and similar.Claudio Jeker
2006-01-05Make ospfd respect carp(4) interfaces and their weird behaviour. They willClaudio Jeker
2006-01-05Improve how ospfd copes with time changes.Esben Norby
2005-12-29More correct cleanup on exit. OK norby@Claudio Jeker
2005-12-29Instead of a simple timer per neighbor for the LS retransmition list useClaudio Jeker
2005-12-15No need to call the nbr_fsm for unexpected LS requests. The RFC tells toClaudio Jeker
2005-12-15Fix ospfe shutdown function. The cleanup was totaly busted. OK norby@Claudio Jeker
2005-12-15Simpify iface_del() and nbr_del(). make them void funtions as they can not failClaudio Jeker
2005-12-15Fix memory leaks in the parser. Make the string passed with area more strict.Claudio Jeker
2005-12-14Replace strlcpy() with memcpy() in the sockaddr_dl handling. sdl_data isClaudio Jeker
2005-12-05Optimize rde_redistribute() a bit and remove two unneeded and way to verboseClaudio Jeker
2005-12-04Increase ADJ_TMOUT to prevent loss of adjacency during bulk ls updateEsben Norby
2005-12-04Increase the receive buffer of the raw socket.Esben Norby
2005-12-02Fixed version of r1.35, readd candidate to list in both cases so that the listClaudio Jeker
2005-11-14Revert candidate list change since it is broken.Esben Norby
2005-11-12spacing mostlyTheo de Raadt
2005-11-04The candidate list is a sorted linear list so when changing the cost ofClaudio Jeker
2005-11-04The maximal rate LSA can be updated is all MIN_LS_INTERVAL seconds and notClaudio Jeker
2005-11-04Set the vertex timestamp as soon as possible giving ospfd a chance to recoverClaudio Jeker
2005-11-04Kill spf_timer in struct ospfd_conf. There is no need for two event structsClaudio Jeker
2005-11-04Use >= instead of == to compare cost with LS_INFINITY. While there fix a typo.Claudio Jeker
2005-11-04In the super fast start-up case in recv_db_description() make sure theClaudio Jeker
2005-11-04Remove unused variable link_state in struct nbr.Claudio Jeker
2005-11-04Make "interface em0 { }" work again. Reported and OK stevesk@Claudio Jeker
2005-10-30remove some unneeded #includes and correct keyword in error string;Kevin Steves