Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-07-11 | remove useless macro; | 1 | -2/+1 | ||
2018-07-11 | "running tags" | 1 | -8/+16 | ||
2018-07-11 | sort tokens | 1 | -4/+4 | ||
2018-07-11 | do not pick up groff from /usr/local/bin in configure, noticed by benno@; | 1 | -1/+3 | ||
ok benno@ jca@ | |||||
2018-07-11 | style - indent each case statement in a switch. | 1 | -81/+86 | ||
2018-07-11 | Print out the hash info sent by the RDE in bgpctl show rib mem | 1 | -2/+17 | ||
OK phessler@ benno@ | |||||
2018-07-11 | On IMSG_CTL_SHOW_RIB_MEM also send back information of some of the | 6 | -6/+108 | ||
hash structures used in the RDE. Makes it fairly obvious that more is needed in that area. OK phessler@ benno@ | |||||
2018-07-11 | test changed stat lying semantics - we don't lie about files | 1 | -3/+3 | ||
2018-07-11 | Print the rdomain config option if present. | 1 | -1/+4 | ||
ok kn@ tb@ deraadt@ sthen@ jca@ | |||||
2018-07-11 | Use AF_UNSPEC not 0 | 1 | -2/+2 | ||
2018-07-11 | Some spaces have been removed from pfctl print. Adapt expected | 10 | -43/+43 | ||
output in regress. | |||||
2018-07-11 | retire the old cron socket path; ok jca millert | 2 | -6/+2 | ||
2018-07-11 | Detect vmm(4) in the bootloader and automatically switch to the serial | 4 | -8/+30 | ||
console at 115200 baud. tested by phessler and myself, ok deraadt | |||||
2018-07-11 | Regress update to match changes for chrome | 1 | -6/+24 | ||
2018-07-11 | Fix comment about VLAN encapsulation and checksum offload | 1 | -7/+8 | ||
Document that some chips actually could do hardware checksum offload for encapsulated packets, though that would need special handling in those drivers. discussions and ok naddy@ | |||||
2018-07-11 | add option "network ... priority number" to announce prefixes from the | 5 | -8/+67 | ||
kernel routing table selected by priority. For example to import all ospfd/ospf6d routes into bgp. tested by remi@ ok remi@ henning@ and maybe a little claudio@ | |||||
2018-07-11 | Detect when a router advertisement packet changes due to config | 3 | -21/+112 | ||
change and if it does send a new advertisement. The way this is implemented gives us various things for free: - periodic sending of router advertisements - send initial advertisement for every interface on startup | |||||
2018-07-11 | no longer needed | 2 | -20/+4 | ||
2018-07-11 | Sync comment | 1 | -3/+5 | ||
Makes it a tad easier to read through and compare with BN_swap_ct(). OK tb | |||||
2018-07-11 | Add -w option to vmctl stop to wait for completion of VM termination. | 10 | -57/+87 | ||
Use it in /etc/rc.d/vmd accordingly. OK sthen@ | |||||
2018-07-11 | vmm(4): return proper cache topology for cpuid(0x4) | 2 | -4/+9 | ||
Make the cache neighbor fields match the number of VCPUs present (currently 1) ok reyk | |||||
2018-07-11 | Retire RTM_LOSING, it no longer makes sense and on busy servers the | 1 | -18/+6 | ||
route socket is flooded with those messages. Instead maek sure that the removal of the dynamic route that can happen is actually also sent to the routing socket. OK mpi@ henning@ | |||||
2018-07-11 | rtm_send() the cloned routes because of ICMP mtu changes. Until now | 2 | -2/+4 | ||
these changes to the routing table have not been visible whereas the RTM_DELETE of those routes have been. Remove this inconsistency. Input and OK mpi@ OK henning@ | |||||
2018-07-11 | vmm(4): respect argument size when reading from undefined ports. | 1 | -8/+16 | ||
2018-07-11 | vmm(4): small cleanup in vm_rwregs. | 1 | -6/+9 | ||
Clarify error values and change a panic into a debug printf (which will in turn just kill the VM). | |||||
2018-07-11 | Drop a const-bomb on regexec. It's probably not a good idea to remove a | 2 | -56/+63 | ||
const promise when processing it in the regex engine. Minor tweak and OK schwarze@ | |||||
2018-07-11 | When in incremental search handle ^M (a.k.a. <cr>) like ^[ (a.k.a. | 1 | -5/+5 | ||
<esc>). i.e. exit incremental search and set the mark. This is what emacs does. pointers, suggestions and ok florian@ | |||||
2018-07-11 | Change the control socket to ospfd.sock.<rdomain>. | 2 | -6/+15 | ||
ok friehm@ jca@ | |||||
2018-07-11 | After opening all the needed files, tighten the pledge(2) | 1 | -1/+5 | ||
from "stdio rpath" to just "stdio", before parsing any user data. It may not matter that much just yet, but parsing will become slightly more complicated soon when i shall add UTF-8 handling. OK millert@ | |||||
2018-07-11 | the STATE_LOOKUP macro made sense ages ago. It stopped making sense | 1 | -56/+69 | ||
when we moved most of the functionality into a function. g/c the macro and just call the function. ok mpi jca | |||||
2018-07-11 | Repair the regression introduced by the recent refactoring | 1 | -5/+5 | ||
revision 1.11 date: 2004/07/03 21:00:37; for -p/-P, the argument was no longer parsed, causing segfaults. OK millert@ | |||||
2018-07-11 | Rename function to vmd_check_vmh | 1 | -4/+4 | ||
2018-07-11 | remove wrong comment | 1 | -2/+1 | ||
ok jca@ tb@ | |||||
2018-07-11 | allow default from state | 1 | -2/+2 | ||
2018-07-11 | allow state->new to deduce the command name from $0 | 1 | -1/+5 | ||
2018-07-11 | Add -f option to vmctl stop to forcefully kill a VM. | 8 | -40/+78 | ||
This also fixes a bug in vmm_sighdlr where it might have missed forwarding the TERMINATE_EVENT to the vmd parent after a VM child died, leading to an abandoned VM in the vmd parent process. OK ccardenas@ mlarkin@ benno@ kn@ | |||||
2018-07-11 | in if_addgroup(), call the new pfi_group_addmember() instead of | 1 | -2/+2 | ||
pf_group_change() - the latter is called by _addmemeber now to update dynaddr. before this, "set skip on lo", ifconfig lo1 create -> no skip on lo1 until pf rueset got reloaded. Now lo1 gets the skip flag as intended. This has caused much confusion with i. e. gif interfaces in the past. ok benno, very excited ok phessler | |||||
2018-07-11 | Convert AH & IPcomp to ipsec_input_cb() and count drops on input. | 5 | -119/+37 | ||
ok markus@ | |||||
2018-07-11 | provide pfi_group_addmember(), which makes the new member interface inherit | 2 | -2/+16 | ||
set flags from the group. ok phessler benno | |||||
2018-07-11 | there is nothing secret about rad.conf | 1 | -3/+3 | ||
2018-07-11 | Document behavior change of EC_POINTs_mul(3) from EC constant time changes. | 1 | -4/+22 | ||
ok beck on earlier version, markup help from Schwarze. | |||||
2018-07-11 | Don't hide errors when IPv6 forwarding is not enabled. | 1 | -9/+2 | ||
OK(failed) phessler OK deraadt | |||||
2018-07-11 | Expand formats in load-buffer and save-buffer. | 2 | -12/+23 | ||
2018-07-11 | s/wuth/with/ in comment | 1 | -2/+2 | ||
2018-07-11 | sync | 1 | -1/+0 | ||
2018-07-11 | Do for most running out of memory err() what was done for most running | 24 | -170/+170 | ||
out of memory log_warn(). i.e. ("%s", __func__) instead of manual function names and redundant verbiage about which wrapper detected the out of memory condition. ok henning@ | |||||
2018-07-11 | Turn yesterday's optimistic ! in an XXX comment into a more cautious ? | 1 | -2/+2 | ||
2018-07-11 | Using resolved after realpath(3) has failed is dangerous. Don't do it! | 1 | -3/+3 | ||
Minor tweak and OK jca@ OK beck@ deraadt@ | |||||
2018-07-11 | Make the output of the list command more sensible for the output device. | 1 | -1/+5 | ||
We now output $COLUMNS - 8 characters of the string and a newline. This is similar to the behaviour in ed(1). Discussed with and OK schwarze@ | |||||
2018-07-11 | Helper function to shorten history. | 1 | -7/+12 | ||