Simon Ninon

Results 61 comments of Simon Ninon

Hi, originally this library was based on poll. However, the problem was that Windows implementation of poll is... buggy. So I changed to select which works perfectly fine. One improvement...

Email reply: ``` Hi Edwin, Thanks for reaching out to me and for the detailed explanation! Technically, when the tcp_client is destroyed, it will call .disconnect(true) internally. Note that we...

Status of this issue is on-going, fix should be release soon, sorry for the delay.

The implementation had some issues, I rollback the change and reopen the issue.

Hey, Thanks for this issue! That's a really good idea and I'll definitely look into it. We already have a roadmap for the next releases (stable release, performance improvement, cross-platform...

Little update concerning this issue. I started to look a little at how Android NDK works. There are basically two main options to use a C++ library with Android: *...

Ok, after investigation: yes, the NDK support loading of shared libraries, but only prebuilt one with the NDK tools. That means that we need to integrate our toolchain to the...

[MISRA C++ 2008](http://frey.notk.org/books/MISRA-Cpp-2008.pdf) This document is considered as a reference for C++ secure programming. It was originally intended for critical domains such as motor or aircraft industry, and extended to...

**What C++ features should be avoided?** From my current search results, one of the most important aspects of embedded development is the timing. On small devices, latency caused by language...