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 d5cd89c544062d6342865195c113f5e914f35646
parent 2c6b5e6b0f81f0db0133db08b9bfa7f1b006c3ab
Author: Joris Vink <joris@coders.se>
Date:   Thu,  3 Jul 2014 22:15:11 +0200

s/kore_pgsql/pgsql and s/kore_tasks/tasks

Diffstat:
contrib/examples/pgsql_test/src/pgsql_test.c | 2+-
contrib/examples/task_curl/example.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/examples/pgsql_test/src/pgsql_test.c b/contrib/examples/pgsql_test/src/pgsql_test.c @@ -16,7 +16,7 @@ #include "kore.h" #include "http.h" -#include "kore_pgsql.h" +#include "pgsql.h" #include "static.h" diff --git a/contrib/examples/task_curl/example.c b/contrib/examples/task_curl/example.c @@ -40,7 +40,7 @@ #include "kore.h" #include "http.h" -#include "kore_tasks.h" +#include "tasks.h" int run_curl(struct kore_task *); int post_back(struct http_request *);