TODO entries and FIXME's.
This commit is contained in:
parent
d46ffc97ff
commit
6aea8905c4
2 changed files with 2 additions and 5 deletions
5
TODO
5
TODO
|
@ -63,6 +63,7 @@ Cleanup
|
|||
- does everybody test return value of sk_open?
|
||||
- add references to RFC's we did follow
|
||||
- protocols: implement CLI hooks
|
||||
- protocols: use locking
|
||||
|
||||
Various ideas
|
||||
~~~~~~~~~~~~~
|
||||
|
@ -78,10 +79,6 @@ Various ideas
|
|||
|
||||
RIP
|
||||
~~~
|
||||
- export-only and import-only mode?
|
||||
- drop RIPv1 (Historic protocol)?
|
||||
- Route Tag
|
||||
- limit routing table xfer (frequency, only to neighbors)
|
||||
|
||||
OSPF
|
||||
~~~~
|
||||
|
|
|
@ -368,7 +368,7 @@ rip_process_packet( struct proto *p, struct rip_packet *packet, int num, ip_addr
|
|||
#ifndef IPV6
|
||||
ipa_ntoh( block->netmask );
|
||||
ipa_ntoh( block->nexthop );
|
||||
if (packet->heading.version == RIP_V1)
|
||||
if (packet->heading.version == RIP_V1) /* FIXME: switch to disable this? (nonurgent) */
|
||||
block->netmask = ipa_class_mask(block->network);
|
||||
#endif
|
||||
process_block( p, block, whotoldme );
|
||||
|
|
Loading…
Reference in a new issue