Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-26 | Fix alignment issues on sparc64. Fixes pr 5608. | Moritz Jodeit | |
ok canacar@ | |||
2007-10-25 | segement -> segment; from Denis Doroshenko | Jason McIntyre | |
plus an article fix whilst here | |||
2007-10-25 | kill extraneous item macro, thus avoiding badness; | Jason McIntyre | |
2007-10-25 | Add -D makro=value as well so that all routing daemons are in sync. | Claudio Jeker | |
OK norby@ | |||
2007-10-25 | Support -D makro=value like bgpd and ripd. OK norby@ | Claudio Jeker | |
2007-10-25 | Max values are 255:31:7 not 256:32:8. | Tobias Stoeckmann | |
OK dlg@, kettenis@ | |||
2007-10-25 | oops, forgot to clean up the manpage bits. | Pierre-Yves Ritschard | |
prompted by mpf | |||
2007-10-25 | sync logging with most other daemons. | Pierre-Yves Ritschard | |
ok mcbride@, mpf@ | |||
2007-10-24 | Make the packet buffer u_int8_t * everywhere. This is binary data and not | Claudio Jeker | |
a string. | |||
2007-10-24 | The metric is a 8bit value ranging from 1 to INFINITY (defined as a whopping | Claudio Jeker | |
16). So use u_int8_t everywhere. | |||
2007-10-24 | An u_int8_t is enough as prefixlen. Another lint warning gone. | Claudio Jeker | |
2007-10-24 | Document -D. Stolen from bgpd.8 | Claudio Jeker | |
2007-10-24 | Add the 5 needed lines to support -D makro=value option. Another surprising | Claudio Jeker | |
finding by lint. | |||
2007-10-24 | Use an ssize_t instead of int like in all other imsg handlers. Hint by lint | Claudio Jeker | |
2007-10-24 | The index should be unsigned int -- another lint finding | Claudio Jeker | |
2007-10-24 | ctl_rt flags should be u_int16_t -- noticed by lint | Claudio Jeker | |
2007-10-24 | Garbage collect unused stuff found by lint. | Claudio Jeker | |
2007-10-24 | Sync a bit more with ospfd. Do not fatal if one of the pipes is closed, | Claudio Jeker | |
instead do a "nice" shutdown. Ignore SIGHUP in the childs even though we have no reload support (yet). Remove some redundant code and clean up some types. | |||
2007-10-24 | Don't use inet_ntoa() twice in a printf like function. So instead of | Claudio Jeker | |
using inet_ntoa() on the netmask use mask2prefixlen(). | |||
2007-10-23 | add missing header to avoid warning | Charles Longeau | |
"commit!" dlg@ | |||
2007-10-22 | variable does not need init; ok dlg | Theo de Raadt | |
2007-10-22 | we don't need mmap/munmap in relay_load_certificates anymore... | Reyk Floeter | |
just use read() and make the function a little bit nicer. ok pyr@ | |||
2007-10-22 | last one left behind. | Pierre-Yves Ritschard | |
all daemons synced. ok reyk@ | |||
2007-10-22 | load certificates text at parse time. then load them in relay processes. | Pierre-Yves Ritschard | |
this separation will ease reload a bit more. ok reyk@ who spotted a stupid mistake again... | |||
2007-10-22 | add missing .Ed; | Jason McIntyre | |
2007-10-22 | add support for the include directive to the configuration file parser, | Reyk Floeter | |
based on the existing hostapd/pfctl code. ok pyr@ | |||
2007-10-22 | add RCS id | Jasper Lievisse Adriaanse | |
"free commit!" dlg@ | |||
2007-10-22 | do not check the file secrecy of hoststated.conf, there is no need to | Reyk Floeter | |
enforce the file ownership and permissions to root:wheel 0400 because we have nothing to hide. ok pyr@ | |||
2007-10-22 | various improvements; | Jason McIntyre | |
2007-10-22 | "link it to the build" deraadt@ | David Gwynne | |
2007-10-22 | only build program on pci architectures | Theo de Raadt | |
2007-10-22 | lint says __progname is not const | Theo de Raadt | |
2007-10-22 | dmesg prints bus/dev/func locations in decimal, and the command line param | David Gwynne | |
to pcidump takes decimals, so print the locations as decimals too. less confusing, but maybe a bit uglier. ugliness can be fixed later though. | |||
2007-10-22 | infromation -> information | David Gwynne | |
from paul de weerd | |||
2007-10-22 | i wrote most of the code this year, so fix copyright. | David Gwynne | |
2007-10-22 | put pcidump in the tree, a little tool for reading the pci configuration | David Gwynne | |
spaces. requested by kettenis@ ok kettenis@ deraadt@ marco@ and lots of others | |||
2007-10-21 | Being able to set the decision weight of prefixes is a nice feature, but | Michael Knudsen | |
when it's not really documented in what way it influences the decision process, people like myself will screw it up and assume that it gets added to the prefix path lenth, and thus that smaller weight wins. .. which is not the case. Document the actual behaviour. ok claudio, the general change agreed by henning. proofraed by jmc. | |||
2007-10-21 | Take even more care to ensure the max message size is at | Kenneth R Westerback | |
least as large as the minimum IP MTU. ok canacar@ henning@ millert@ | |||
2007-10-21 | sync with other daemons. | Pierre-Yves Ritschard | |
ok mcbride@ | |||
2007-10-21 | Last bit of (planned) tidy up in cons_options(). Join some lines, | Kenneth R Westerback | |
delete some blank lines, add some other blank lines, move expressions so calculations done only once. Eliminate extraneous ++'s. No functional change. | |||
2007-10-21 | Tidy up, make usual case exit faster, eliminate variable. No functional | Kenneth R Westerback | |
change. ok beck@ | |||
2007-10-20 | ntpd and bgpd's turn to behave like the others. | Pierre-Yves Ritschard | |
ok henning@ | |||
2007-10-20 | forgot about ospfd in last commit. | Pierre-Yves Ritschard | |
ok hennin@ too. | |||
2007-10-20 | Sync parse.y with recent enhancements in hoststated. | Pierre-Yves Ritschard | |
Fix behavior when running -n. henning@ | |||
2007-10-19 | missing break; spotted by robert, marco did not read the diff well enough or ↵ | Theo de Raadt | |
try it | |||
2007-10-19 | print system error when fopen fails. | Pierre-Yves Ritschard | |
2007-10-19 | don't fill the logs; spotted by deraadt@ ok henning@ | Otto Moerbeek | |
2007-10-19 | Make sure bufix is updated after copying options into the first overflow | Kenneth R Westerback | |
buffer. Actually use the second overflow buffer now that bufix is correct and the test for remaining options will work correctly. ok beck@ | |||
2007-10-19 | Be a bit more paranoid and initialize all valid options buffers with | Kenneth R Westerback | |
DHO_PAD (a.k.a. 0). Eliminate manual DHO_PAD'ing after DHO_END is put into the buffer. ok beck@ | |||
2007-10-19 | Fix obvious typos and write DHO_PAD and DHO_END into correct options overflow | Kenneth R Westerback | |
buffer. Spotted by canacar@ and others. ok beck@ |