summaryrefslogtreecommitdiffstats
path: root/src/test/test_compressupport.lua
blob: 9d4502e6bdff0caa49e9e57ed942b5e18a8ae7ec (plain)
1
2
3
4
5
6
7
8
9
10
local zpcap = require("dnsjit.input.zpcap").new()

zpcap:lz4()
if zpcap:have_support() then
    print("lz4")
end
zpcap:zstd()
if zpcap:have_support() then
    print("zstd")
end