Results 358 comments of Takatoshi Kondo

See bench.cpp https://github.com/redboltz/mqtt_cpp/blob/27765791adaede2ce5340f81405ad6304387b12d/example/bench.cpp#L1054-L1070 It is a little tricky because mqtt_cpp supports various underlying layer without virtual function mechanism to support templates. So we need to use `decltype()` to get the...

I used to try cotire https://github.com/sakra/cotire and ccache. However no significant speed up is observed at that time. Basically I don't want to change source code for this kinds of...

@Radagan , your contribution is always very welcome :) BTW, you can cross-compile your application that includes header-only mqtt_cpp. Here is example of RaspberryPI cross compiler building files: https://github.com/kikairoya/raspi-tools It...

I just googled docker environment and found https://github.com/sdt/docker-raspberry-pi-cross-compiler.

It seems that the CI took over 2 hours 45 minutes at the test phase. So I cancel it. https://github.com/redboltz/mqtt_cpp/runs/876329111?check_suite_focus=true

No. I'm not sure but it seems that Boost.Beast doesn't support it so mqtt_cpp doesn't support it. You can use the command `proxytunnel`. https://github.com/proxytunnel/proxytunnel It supports authentication. ``` proxytunnel -p...

My image is as follows: ``` MQTT control packet +----------+----------+----------+----------+----------+ | | | | | | +----------+----------+----------+----------+----------+ process_a process_b process_c process_d process_e ``` ```cpp protocol_checker checker { publish }; //...