Ben Crowhurst
Ben Crowhurst
+1 *BSD/Linux/Solaris?
``` C++ Socket( void ); Socket::listen( port, bind_address, new_connection_callback ); Socket::connect( port, address, success_callback, error_callback ); Socket::write( ..., success_callback, error_callback ); Socket::read( ..., success_callback, error_callback ); Socket::set_option( name, value );...
During this development please remove the io_service and buffer from the request. The Socket should contain all of the ASIO related items. Given we would have to place all runloop...
This ticket is rising in priority. With this feature in place we could achieve a far greater set of tests to aid in the validation of the framework logic e.g....
We saw a similar issue in the past, perhaps a regression has crept back in. We will drill down further.
Mixed encodings is a slippery slope, we don't favour implementing this in Restbed. You can achieve your goal as follows: ```C++ #include #include #include using namespace std; wstring_convert converter; wstring...
Please state your environment compiler, OS, etc...
Thanks, attempting a build now.
So I've attempted to build on FreeBSD 11 AMD64 with clang-3.8.0 with no errors reported or tests failing. Are you able to supply anymore information about the issues you see?
I'm seeing green across the board. I'll upgrade my version of clang and see if I can't replicate the problems.