amir zamani
amir zamani
following our discussion in twitter: - `constness` at the moment the accessors operators are non-const, it would be great if you make them const as they return `const &` or...
your design rationale about three categories of flags, positional and parameters looks familiar and comprehensible for every command line user! you've already classified them as: ```cpp // parser: std::multiset const&...
same mistake in: [key exchange and DHKE](https://github.com/nakov/Practical-Cryptography-for-Developers-Book/tree/master/key-exchange#key-exchange-and-dhke): - In a key transport scheme only one of the parties contributes to the shared secret and the other party obtains the secret...
@Sejal-G you're absolutely right. some libs even issue an error if a private key is used for encryption, although it may be possible to extract the public key from the...
yes, `qhttp` is designed to behave this way. for such scenario you need to check `qhttp::server::QHttpConnection::disconnected()` signal and stop any further processing on current instances of request, response and connection....
humm, I do not have access to a Windows machine, i rarely have a chance to compile `qhttp` under Windows. I guess vs2013 support of `c++14` (minimum requirement) is not...
generally it's good idea to support both `c++14` compatible compilers and `c++11` ones. needs some `#ifdef`s and conditional compiling. `qhttp::for_each` is analogue to `std::for_each` and in my taste it's more...
sorry for being sooooo late! `qhttp` is quite simple and minimal and is mostly a thin http parser + connection manager in Qt. HTTP redirection/forward/... or any other action should...
@mrdeveloperdude sorry to be so late! thank you for reporting the `collectData()` bug, gonna fix it asap.
I'm trying to refactor the `qhttp` implementation in my free time (if i could find any) and fixing this issue is on my set list. thanks @hoensr and others, i...