Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-30 | MIN->MINIMUM, even though smb is currently disabled. | Theo de Raadt | |
2017-05-30 | Send a source link-layer address option with our solicitations. | Florian Obser | |
Servers following RFC 7772 may then send us unicast router advertisments and thus reduce multicast traffic which might increase the battery life of other devices using the same shared media. | |||
2017-05-30 | whitespace encountered during review | Theo de Raadt | |
2017-05-30 | remove extended communities that have the transitive bit set from | Sebastian Benoit | |
routes announced to an ebgp peer (ref. rfc4360). While here remove the pratial flag from extended and large communities. ok claudio@ | |||
2017-05-30 | split vioblk read/write functions into start and finish as prep for | Ted Unangst | |
async io operations. ok mlarkin | |||
2017-05-30 | Remove never used ifdefs, define FATAL macro properly and define function | YASUOKA Masahiko | |
parameters in modern way. | |||
2017-05-30 | Stop using __P macro. | YASUOKA Masahiko | |
2017-05-30 | Don't call TAILQ_REMOVE twice. This caused radiusd crash if it has a | YASUOKA Masahiko | |
pending request when it stops. | |||
2017-05-30 | delete default route from FIB when we receive advertisement with | Florian Obser | |
router lifetime of 0 | |||
2017-05-30 | delete default route from FIB when it expires | Florian Obser | |
2017-05-30 | no need to pass the slaacd_iface around, the proposal has the if_index | Florian Obser | |
2017-05-30 | fix previous; actually free the memory | Florian Obser | |
2017-05-30 | Remove default router proposals and address_proposals | Florian Obser | |
when their lifetime reaches zero. | |||
2017-05-30 | Update default router states; pointed out by naddy | Florian Obser | |
2017-05-30 | waive signature check waving | Theo Buehler | |
ok jmc espie | |||
2017-05-30 | increase vmd(8) virtio queue size from 64 to 128. Also fix an old | Mike Larkin | |
copypaste bug that didn't hurt us as long as all the queue sizes were the same, which was the case up to now. suggested by sf@, ok krw@ | |||
2017-05-30 | The capability error codes never made it into a standard and now error | Michal Mazurek | |
code 7 is for enhanced route refresh. OK claudio@ phessler@ | |||
2017-05-30 | Adding multipath route support to ospf6d. Almost copied from ospfd. | friehm | |
OK bluhm@ | |||
2017-05-30 | tweak previous; ok florian | Jason McIntyre | |
2017-05-30 | fix a jumbled conditional clang warns about; ok florian@ | Christian Weisgerber | |
2017-05-30 | remove an extra .Ed; | Jason McIntyre | |
2017-05-30 | Introduce a scary rc.conf(8) knob library_aslr=(YES|NO) to turn off the | Theo Buehler | |
reordering of libraries by rc(8). This way machines with very slow disk I/O have a chance of booting within reasonable time now that libcrypto is also randomized. Discussed with various; input & ok from deraadt ajacoutot | |||
2017-05-30 | reduce lies | Florian Obser | |
2017-05-30 | Enable more error codes for BGP. These were commited some time ago, but | Michal Mazurek | |
never enabled. Also add error codes for FSM. With input from Job Snijders. OK phessler@ (previous version), claudio@, deraadt@ | |||
2017-05-30 | Teach ypldap to use tls when connecting to ldap servers. | Jonathan Matthew | |
libtls help from jsing@, linker help from deraadt@ | |||
2017-05-29 | missing .El; | Jason McIntyre | |
2017-05-29 | The kernel sets IN6_IFF_AUTOCONF for autoconf addresses, also make | Florian Obser | |
slaacd(8) do that. At least you can identify them in ifconfig output. Difference pointed out by & OK naddy | |||
2017-05-29 | change section title in bgpd.conf talking about MPLS, | Sebastian Benoit | |
add a bit about working with multiple bgpds in rdomains in bgpctl. shouting from claudio@ and help from jmc@ | |||
2017-05-29 | fix "depend on" when carp interface goes from MASTER into state INIT | Sebastian Benoit | |
aka UNKNOWN. ok claudio@ phessler@ and henning helped along too | |||
2017-05-29 | After some consideration, revert last commit and don't abuse rde_dump_done. | Claudio Jeker | |
IMSG_CTL_SHOW_RIB_PREFIX case is not using rib_dump_r and so should not use rde_dump_done, instead send the IMSG_CTL_END msg and free the ctx directly. This is easier to understand. | |||
2017-05-29 | sync proc.c changes from relayd/httpd | Sebastian Benoit | |
2017-05-29 | do not whine if installpath is undef. | Marc Espie | |
2017-05-29 | hook up slaacd and slaacctl. | Florian Obser | |
OK naddy, deraadt | |||
2017-05-29 | Fix crash in IMSG_CTL_SHOW_RIB_PREFIX handling. The ctx is not added to | Claudio Jeker | |
the list in that case so don't try to LIST_REMOVE it. Problem found by benno@ | |||
2017-05-29 | avoid Xr to self; | Jason McIntyre | |
2017-05-29 | Refactor locator code so it's a proper object. | Marc Espie | |
allow fw_update to short-circuit entirely, thus the specific treatment of paths is actually less of a special case, and the code that reaches into /etc/installurl is no longer used at all in that case. problem noticed by mlarkin@ | |||
2017-05-29 | rm xr mailaddr.7 | Ted Unangst | |
2017-05-29 | change bgpd's control socket from /var/run/bgpd.sock to | Sebastian Benoit | |
/var/run/bgpd.sock.<rdomain> in both bgpd and bgpctl. makes life easier for admins. ok phessler, claudio, henning, feedback from Job Snijders | |||
2017-05-29 | clang points out that the first argument to setproctitle is a format | Florian Obser | |
string. Not really an issue since we are eventually passing in a string literal... While here don't set the proctitle for the main process to play nicer with rc.d(8) | |||
2017-05-29 | Compare the l2 address from which the slaac address was formed with | Florian Obser | |
the current interface l2 address. Only update the address lifetime if they are the same. This way we get a new address on ifconfig lladdr random. | |||
2017-05-29 | only send router solicitation on RTM_NEWADDR if the l2 address changed | Florian Obser | |
2017-05-29 | remove the file permission check for bgpd.conf | Peter Hessler | |
OK deraadt@, henning@, sthen@, and everyone who has ever been annoyed | |||
2017-05-29 | vmd(8): prevent crashing when presented with a vm name argument to | Mike Larkin | |
"vmctl stop" that doesn't exist. Diff from Pratik Vyas, thanks! | |||
2017-05-28 | SVM: add some exit types | Mike Larkin | |
Also, fix a comment that wasn't applicable anymore, and change a format from decimal to hex | |||
2017-05-28 | only mark privacy addresses as such instead of all configured addresses | Christian Weisgerber | |
ok florian@ | |||
2017-05-28 | removed if 0'ed code; it gets in the way of grepping for things | Florian Obser | |
2017-05-28 | Print when we send or recv an EOR marker. | Claudio Jeker | |
Req by and OK benno@ | |||
2017-05-28 | Introduce log_peer_info() and make log_peer_warn() log at LOG_ERR instead | Claudio Jeker | |
of LOG_CRIT (which should only be used for fatal). OK benno@ | |||
2017-05-28 | Close imsg pipes later in the process. The shutdown code still tires to | Claudio Jeker | |
send imsgs and so the SE and RDE crashed because of this late in shutdown. OK benno@ phessler@ | |||
2017-05-28 | set autoconfprivacy flag; prodding naddy | Florian Obser | |