Pascal Bouchareine
Pascal Bouchareine
Hi Nikolai, we're glad to take feedback to help prioritize the next features. On this specific topic what is your DNS host using? Does it support CDS/CDNSKEY rollovers? We have...
Hi there, From what I recall there's quite a number of tight couplings in there - if you're planning on using the new LiveDNS API, you'd probably be better off...
Not sure about the amount anyway.
Alright, we should focus on displaying what the customer will buy and let him a chance to double-check even technical params (eg. explicit the certificate type and duration, remind the...
I believe submitting a certificate request is worth double checking the CN and certificate type/cost so I'd go for a confirmation Thanks!
The --script option is a temporary helper and should go into an api call someday. However the use case "create a vm, deploy something as root on it, but also...
Some SSE4 ops here are mixed with unaligned loads and stores, so it might be something you want to replace with memcpy() anyway. The BGP filtering logic seems weird (mask...
Those lovely SIMD calls are mostly efficient in long, unrolled chunks of code where many operations are applied to intermediate values. The load/unaligned load/op/store case is probably not so much...
@brushek you might want to try the https://github.com/Gandi/packet-journey/tree/devel/memcpy branch, that basically replaces SSE4.1 calls with plain C. @klnikita If you want to check this out and compare the perf, I'd...
@klnikita thanks for the ether_addr_copy pointer, I think that's exactly what we needed here - I've pushed a new version. I did not test anything here - so let's not...