Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-30 | Fix parse_prefix() for IPv4 addresses. Looks like fallout after IPv6 addition. | Claudio Jeker | |
Now bgpctl show rib 129.128.5.191 works again. | |||
2005-12-30 | There is no attr_mp_nexthop() function, remove the prototype. | Claudio Jeker | |
2005-12-30 | Remove unused attr_optlen() | Claudio Jeker | |
2005-12-30 | Use sys/hash.h instead of own built functions that work similar. | Claudio Jeker | |
While there reorder some structs to help with alignment. | |||
2005-12-30 | Merge rde_attr_error() into rde_attr_parse() it is no longer necessary to | Claudio Jeker | |
have a separate error function. It is no porblem to call rde_update_err() directly. | |||
2005-12-29 | More correct cleanup on exit. OK norby@ | Claudio Jeker | |
2005-12-29 | Instead of a simple timer per neighbor for the LS retransmition list use | Claudio Jeker | |
a timewheel. All LSA updates are now first added to the queue and sent out later. This makes it possible to cluster multiple LSA updates into on OSPF packet. This gives a massive speedup when large databases need to be synced. Tested and OK norby@ | |||
2005-12-29 | add an 'include' rule to hostapd.conf(5); based on an older diff from | Reyk Floeter | |
dhartmei@ for the parser. this is useful if you have many hostapd systems using the same configuration but individual local definitions (like macros or table entries). | |||
2005-12-28 | Use the DIP macros to uniformly access fields from UFS1 and UFS2 dinodes. | Pedro Martelletto | |
No functional change, okay tedu@. | |||
2005-12-26 | have pkg_create warn about shared libs which have a version number hardcoded | Marc Espie | |
in the packing-list. | |||
2005-12-24 | bzero the pfd array before setting it up and calling poll because on error | Claudio Jeker | |
(e.g. EINTR) poll() will not update the pfd array (copyout) and so the old revents are used and results in a blocking parent process. OK dlg@ | |||
2005-12-24 | Don't use bzero(&pfd, sizeof(pfd)); pfd is an array so bzero(pfd, sizeof(pfd)); | Claudio Jeker | |
is better. Discussed on icb. | |||
2005-12-23 | - no need to use .Bk/.Ek after every option | Jason McIntyre | |
- make -s more consistent w/ rest of the page | |||
2005-12-23 | fill in the blanks for -r; | Jason McIntyre | |
from dd@freebsd, -r1.15, but synced with our traceroute(8) -r; ok djm claudio | |||
2005-12-23 | adjust the description of -r to that in freebsd's traceroute6(8), | Jason McIntyre | |
since it's more informative; ok djm claudio | |||
2005-12-22 | `option', not `options'; | Jason McIntyre | |
from j.c. roberts | |||
2005-12-21 | Userland programs should include <errno.h> not <sys/errno.h> | Todd C. Miller | |
OK deraadt@ | |||
2005-12-20 | some wording improvements; | Jason McIntyre | |
2005-12-19 | Better English in comment. | Claudio Jeker | |
2005-12-18 | Update my e-mail address in the copyright statement, no binary changes. | Reyk Floeter | |
2005-12-18 | Update my e-mail address in the copyright statement, no binary changes. | Reyk Floeter | |
2005-12-17 | remove extra space in output of router LSA; ok claudio@ | Kevin Steves | |
2005-12-17 | Remove the 'on disk' inode (dinode) from the 'in memory' inode in UFS. | Pedro Martelletto | |
Instead of having the dinode inside the inode structure itself, we now have just a pointer to it, and use a separate pool to allocate dinodes as needed. Inspiration from FreeBSD, various testing for a while, thanks. | |||
2005-12-16 | rm kerberosIV remnant | Todd T. Fries | |
ok millert@ | |||
2005-12-15 | No need to call the nbr_fsm for unexpected LS requests. The RFC tells to | Claudio Jeker | |
just ignore thos packets. OK norby@ | |||
2005-12-15 | Fix ospfe shutdown function. The cleanup was totaly busted. OK norby@ | Claudio Jeker | |
2005-12-15 | Simpify iface_del() and nbr_del(). make them void funtions as they can not fail | Claudio Jeker | |
and do not remove a element twice in iface_del(). OK norby@ | |||
2005-12-15 | Fix memory leaks in the parser. Make the string passed with area more strict. | Claudio Jeker | |
Finaly implement clear_config(). OK norby@ | |||
2005-12-14 | Replace strlcpy() with memcpy() in the sockaddr_dl handling. sdl_data is | Claudio Jeker | |
not a C string and strlcpy() only works on C strings -- returns length of the source. Found by tedu@ OK deraadt@ tedu@ | |||
2005-12-12 | correct err() usage and remove the do_death which is unneeded in | Bob Beck | |
the child proceess, (as noticed by <evol@online.ptt.ru>) | |||
2005-12-12 | Backout previous change back to 1.92 - My fault, committed diff | Bob Beck | |
from unclean tree. | |||
2005-12-11 | inode/dinode separation for ext2fs | Pedro Martelletto | |
2005-12-10 | tweak: ok reyk | Jason McIntyre | |
2005-12-10 | add an option to increase the multicast ttl which is currently limited | Reyk Floeter | |
to 1 hop. by using a higher multicast ttl, you could use inter-network multicast forwarding of hostapd messages (i.e. with mrouted(8) or multicast-capable routing switches); "set iapp mode multicast ttl 2". | |||
2005-12-10 | make lint more happy | Reyk Floeter | |
2005-12-09 | Mine, so modernize license | Bob Beck | |
2005-12-09 | calling do_death() after err makes us exit is not smart, and is in | Bob Beck | |
fact unnecessary, my usage of err() here also repeated the formatted error message twice. - We don't need do_death() here, and fix err to print the message a bit more sanely. Noticed by Andrey Matveev <evol@online.ptt.ru> - Thanks | |||
2005-12-09 | Unkown attributes need to be optional, if not issue a "unknown wellknown | Claudio Jeker | |
attribute" error. While this check is already present in the error handling function it is not done while parsing. Found via regress, OK henning@ | |||
2005-12-08 | make authpf give up group privs before exec'ing pfctl - makes it | Bob Beck | |
so the new taint enforcement for /dev/fd/X opens don't kill it | |||
2005-12-08 | Missing #include <limits.h> | Claudio Jeker | |
2005-12-08 | Missing ntohs() in error path. Found via regress test. | Claudio Jeker | |
2005-12-08 | When parsing open messages enforce that the optional parameter length is | Claudio Jeker | |
equal to the size of the rest of the message and not only enforcing that no overflow happens. Found via regress test. OK henning@ | |||
2005-12-07 | Do not use strlcpy if the source string is not NUL terminated and | Otto Moerbeek | |
avoid printing funny chars. Problem spotted by naddy@ whil tcpdumping enc0 with malloc.conf AJ; ok canacar@ on an earlier version. | |||
2005-12-07 | new ISC nslookup clone "written because we feel like it" is incorrect | Theo de Raadt | |
to spit out the ">" prompt to stderr; it has always been output to stdout historically, and that is the right thing to do. scripts depend on it, as spotted in pr 4937. my fix, because the scripts do not need fixing | |||
2005-12-06 | Remove fdescfs | Pedro Martelletto | |
2005-12-05 | make sure set_modes always get called for a `real' extraction. | Marc Espie | |
Problem noticed by sturm@ | |||
2005-12-05 | Optimize rde_redistribute() a bit and remove two unneeded and way to verbose | Claudio Jeker | |
log_debug() messages. OK norby@ | |||
2005-12-05 | Ignore case on the file extension, to allow both .s and .S to be included | Dale Rahn | |
in SFILES for mkdep. Would also pick up .C files (but we dont allow with those in the kernel) ok deraadt@ | |||
2005-12-04 | Increase ADJ_TMOUT to prevent loss of adjacency during bulk ls update | Esben Norby | |
transfers. ok claudio@ | |||
2005-12-04 | Increase the receive buffer of the raw socket. | Esben Norby | |
Prevents some of the retransmitting during bulk ls update transfers. ok claudio@ |