libtins v4.0 release
libtins is a high-level, multiplatform C++ network packet sniffing
and crafting library. In this post I’ll be covering the major changes that were made in the
v4.0 release of ...
Introduction
While implementing cppkafka, I realized every time
I wrote a consumer application, the consumption code would look like this:
while (true) { // Try getting a message Message ms...
cppkafka is a project I’ve been slowly working on for
a while. It’s a C++11 wrapper built on top of librdkafka,
a high performance C client library for the Apache Kafka protocol.
Why another Kafka...