kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 7a814f5786620a295d0e16d9f27698d3897cb53d
parent a10dfe03fe0ff010c86624aa27436b7850ae371d
Author: Joris Vink <joris@coders.se>
Date:   Mon, 13 May 2019 23:14:12 +0200

less lies, more truth.

Diffstat:
examples/async-curl/src/http.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/examples/async-curl/src/http.c b/examples/async-curl/src/http.c @@ -80,12 +80,13 @@ state_setup(struct http_request *req) /* * Bind the HTTP client request to our HTTP request so we get woken * up once a response is available. + * + * This will put us to sleep. */ kore_curl_bind_request(client, req); /* * Now fire off the request onto the event loop. - * This will put us to sleep. */ kore_curl_run(client);