Vinícius dos Santos Oliveira

Results 94 comments of Vinícius dos Santos Oliveira

> You're most likely suffering from complexity addiction. Not really. There is very little difference between stackful coroutines and fibers. You just lack this understanding. And Boost.Asio execution engine already...

> Only thing that matters to me is ability to suspend while saving context. [Been there. Done that.](https://github.com/blinktrade/iofiber) A fiber token will **not** complicate your use case. It's `spawn(...)` +...

> Also FWIW [rfc7230](https://tools.ietf.org/html/rfc7230) obsoletes [rfc2616](https://tools.ietf.org/html/rfc2616). I too much prefer references to the updated document. However, the rules don't change regarding to optional whitespace (OWS in RFC7230) being allowed in...

The RFC7230 (section 3.2) ABNF rules for header fields: ``` header‑field = field‑name ":" OWS field‑value OWS OWS = *( SP / HTAB ) ```

@MrElectrify here's sample code on how to use `GetAddrInfoExW()` with Boost.Asio: https://gitlab.com/emilua/emilua/-/blob/45bd0b5f951df53f346d8dab511bc8d12e4e4b80/src/ip.cpp#L2517 I've tested on a Windows 10 machine.

@MrElectrify it seems to me that `getaddrinfo_a()` on Linux is not worth the hassle. Is it my impression or will it just create another thread? Boost.Asio already does that, so...

Does anyone know of an alternative for macOS? The only thing close to a tutorial that I've found was [a patch lying around in the Emacs mailing list](https://lists.gnu.org/archive/html/emacs-devel/2016-05/msg00526.html), but the...

@RedDwarf69 FWIW Boost.Asio has plenty of configuration macros such as `BOOST_ASIO_DISABLE_THREADS` and the ones listed at . A similar approach could be employed here where the cheaper implementation (where the...

Related issue: https://github.com/chriskohlhoff/asio/issues/810

- Should handle GET/POSTs appropriately - application/x-www-form-urlencoded - multipart/form-data - Content-Disposition: handle weird utf-8 encoding for filename - https://docs.djangoproject.com/en/dev/ref/contrib/csrf/ - upload_max_filesize - Export - name - Type (content-type) - File...