Taylor Foxhall
Taylor Foxhall
Hi there, had a quick question about the expectations of using dynamic linking. The readme in `rdkafka-sys` claims: > The system version of librdkafka must exactly match the version of...
This extends the broker config to support listening to connections on multiple ports. This lays the groundwork for future extensions that will be added to `TcpInterfaceListener`. The broker will behave...
These changes minimize the amount of changes coming from the files supporting a simulating C++11, eliminating all discrepancies except the license header. Future versions of sim_cpp11_features.pl should address this issue.
https://github.com/bloomberg/blazingmq/blob/c71d6c598dc386a5886f16abe03600a9d3068fdc/src/groups/bmq/bmqa/bmqa_configurequeuestatus.h#L109 The implicit `operator bool` conversion is not particularly safe, we prefer the unspecified bool type to help prevent implicit conversions to integral types. We do this for [`CloseQueueStatus`](https://github.com/bloomberg/blazingmq/blob/346b9c305e74f56841eee93c3562dfae91089b91/src/groups/bmq/bmqa/bmqa_closequeuestatus.h#L87), but...
This adds a new check to our workflows using clang-tidy. Right now we only enable analyzer checks, though we could look at expanding to more in the future. We are...
Added ===== - TLS configuration in broker config - Helper script for generating test certs and CAs - TLS options for NtcChannel - Loading certificates and authority data specified from...
It is possible to have a misaligned pointer read for certain input buffers to the crc32c algorithm. The bug comes from the usage of `crc32c8s` in `crc32cSse64bit`. `crc32cSse64bit` attempts to...
The constructors on `Uri` that take a string have the following usage requirements: ``` /// If the `uri` input /// string doesn't not represent a valid URI, this object is...
It seems that generating a type with a member function that uses a reference to a typedef of a templated type causes autocxx to interpret the class with the typedef...
This is mostly addressing the outstanding issues in #829. There are a handful of changes: * Deleted tests that were intentionally invoking UB by casting an out of range int...