chantra
chantra
Given that there is now an IETF version, would it make sense to update the protocol and add support for it along the existing xsalsa and xchacha?
Currently, it takes between 7 and 8 minutes to go through the step "Build docker container with all deps", which is time spent in setting up the CI essentially. This...
Pull CI containers from GHCR and use them during build. Example workflow run: https://github.com/chantra/bcc/runs/7844899499?check_suite_focus=true Logs of the pull step: https://gist.github.com/chantra/b6a13223d530696bb00d40ce58c45fdb#file-gistfile1-txt-L540 depends on #4179
Once https://github.com/iovisor/bcc/pull/4127 lands, the test suite should be able to run leak free. Enabling the [LeakSanitizer](https://clang.llvm.org/docs/LeakSanitizer.html) will help preventing leaks being introduced in the future. This diff makes leak sanitization...
[bcc] Support for new `bcc_func_load` signature. In https://github.com/iovisor/bcc/commit/ffff0edc00ad249cffbf44d855b15020cc968536 a new parameter was added to control the attach type. Subsequently, in https://github.com/iovisor/bcc/commit/815d1b84828c02ce10e1ea5163aede6b5786ba38, `-1` was used to signal the default behaviour. This...
It is my understanding that [edns-buffer-size](https://nlnetlabs.nl/documentation/unbound/unbound.conf/#edns-buffer-size) will only set a EDNS buffer size from recursive to authoritative, but the recursive to stub answer may be greater than that. Similarly to...
CoreDNS has a [bufsize plugin](https://coredns.io/plugins/bufsize/) that can be used to force the bufsize used. This PR adds instruction to set it to 1232 in CoreDNS config.
While trying to build rust tracecon with LLVM 16, the build was failing. https://github.com/libbpf/libbpf-bootstrap/pull/112 was created to reproduce the issue with CI (like https://github.com/chantra/libbpf-bootstrap/actions/runs/3052027285/jobs/4920947176#step:5:187) The issue turns out to be...
Hi, Is there any plans in cutting a new release soon? https://github.com/pnuckowski/aioresponses/commit/b401e6cc4686684d8080b268cdab0c0928d9c447 introduced assert methods which are very useful to test that the code does what we expect. While I...
Currently, dependencies are hardcoded with upper bounds. In some cases, it creates depedency issues as shown in #39. This change removes the upper-bound and instead let rust rely on SemVer...