summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove http related header pollution (#9201) Miodrag Milanović2022-01-261-0/+10
| | | | | | | | | * Remove http related header polution * remove now invalid message * fixed issued detected by clang * Fixed CR at EOF
* emu: correct some file headers (nw) hap2020-06-191-2/+2
|
* srcclean (nw) Vas Crabb2017-03-261-2/+2
|
* Refactored HTTP handling to be easier to extend and use (nw) Miodrag Milanovic2017-03-191-185/+3
|
* more workaround (nw) Vas Crabb2017-02-271-2/+2
|
* don't assume thread is always started (nw) Vas Crabb2017-02-241-3/+2
|
* srcclean (nw) Vas Crabb2017-01-221-5/+5
|
* Removing unnecessary callback Nathan Woods2017-01-151-1/+1
| | | | | | | | | | I'm doing this in response to a compilation error on MSVC 2015. As far as I can tell, this is a bug in the compiler. My basis for asserting this is that placing the following declaration within the 'endpoint.on_open = <<lambda>>' gives the same compilation error: const std::function<void(void)> mycallback = [](void) {}; Whereas moving that logic outside of the 'endpoint.on_open = <<lambda>>' does not give an error. Normally I don't like working around buggy compilers, but in this case the callback is supposed to be optional anyways.
* Added websockets as well (nw) Miodrag Milanovic2017-01-041-2/+24
|
* Added initial HTTP/HTTPS webserver/websocket server support (nw) Miodrag Milanovic2017-01-041-0/+186