Mohammad Nejati
Mohammad Nejati
> When I ran "message_generaor.hpp" file using the command " g++ -std=c++11 message_generator.hpp -o message", It successfully compiled but the executable file(./message) was showing permission denied. (-bash: ./message: Permission denied...
What happens when you try to compile the following source code: ```C++ #include int main(){} ```
Please use `-std=c++11` switch in the compile command.
Please provide the generated error message in a code block.
Yes, please update the docs [here](https://github.com/boostorg/beast/tree/develop/doc/qbk/06_websocket) as well (if there is anything related).
@xim Anything I can help with?
@xim Why did you alter the timing values in the tests? Did you encounter any failures as a result of the tight timings?
Hey @xim, I wanted to let you know that I've decided to review and merge this after the 1.84 release. I reckon it might be risky to do it for...
> Why shouldn't control frames count as activity? Did you mean, "Why should control frames count as activity?" If so, we had a discussion in https://github.com/boostorg/beast/issues/2716. The idea is that...
You can utilize a [http::buffer_body](https://www.boost.org/doc/libs/1_84_0/libs/beast/doc/html/beast/ref/boost__beast__http__buffer_body.html) to send the response part by part. This example might help you: https://www.boost.org/doc/libs/1_84_0/libs/beast/doc/html/beast/more_examples/send_child_process_output.html. If you are reading from a file, you might want to consider...