- improve resiliency against UDP fragmentation attacks (disable PMTUD) (!1061)
- ta_update: warn if there are differences between statically configured
keys and upstream (#251, !1051)
+- human readable output in interactive mode was improved
- doc: generate info page (!1079)
Bugfixes
-- shared constructor: use as serializer_class:new()
function base_class.new(class, on_unrepresentable)
on_unrepresentable = on_unrepresentable or 'comment'
- if not (on_unrepresentable == 'comment'
- or on_unrepresentable == 'error') then
- error('unsupported val2expr on_unrepresentable option ' .. tostring(on_unrepresentable))
+ if on_unrepresentable ~= 'comment'
+ and on_unrepresentable ~= 'error' then
+ error('unsupported val2expr on_unrepresentable option '
+ .. tostring(on_unrepresentable))
end
local inst = {}
inst.on_unrepresentable = on_unrepresentable