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 833ca646e72dd27eaf8fb4f8b89d2279fd19a3f7
parent a82cb168eb3080f5192412771fe0dfa45268add5
Author: Joris Vink <joris@coders.se>
Date:   Mon, 31 Jan 2022 22:02:06 +0100

i forgot, it's 2022.

Diffstat:
LICENSE | 2+-
include/kore/acme.h | 2+-
include/kore/curl.h | 2+-
include/kore/hooks.h | 2+-
include/kore/kore.h | 2+-
include/kore/pgsql.h | 2+-
include/kore/python_api.h | 2+-
include/kore/python_methods.h | 2+-
include/kore/seccomp.h | 2+-
src/accesslog.c | 2+-
src/acme.c | 2+-
src/bsd.c | 2+-
src/buf.c | 2+-
src/cli.c | 2+-
src/config.c | 2+-
src/connection.c | 2+-
src/curl.c | 2+-
src/domain.c | 2+-
src/filemap.c | 2+-
src/fileref.c | 2+-
src/http.c | 2+-
src/json.c | 2+-
src/keymgr.c | 2+-
src/kore.c | 2+-
src/linux.c | 2+-
src/log.c | 2+-
src/mem.c | 2+-
src/module.c | 2+-
src/msg.c | 2+-
src/net.c | 2+-
src/pgsql.c | 2+-
src/pool.c | 2+-
src/python.c | 2+-
src/route.c | 2+-
src/runtime.c | 2+-
src/seccomp.c | 2+-
src/timer.c | 2+-
src/utils.c | 2+-
src/validator.c | 2+-
src/websocket.c | 2+-
src/worker.c | 2+-
41 files changed, 41 insertions(+), 41 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/acme.h b/include/kore/acme.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/curl.h b/include/kore/curl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/hooks.h b/include/kore/hooks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Joris Vink <joris@coders.se> + * Copyright (c) 2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/kore.h b/include/kore/kore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/pgsql.h b/include/kore/pgsql.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2014-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/python_api.h b/include/kore/python_api.h @@ -1,6 +1,6 @@ /* * Copyright (c) 2016 Stanislav Yudin <stan@endlessinsomnia.com> - * Copyright (c) 2017-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2017-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/python_methods.h b/include/kore/python_methods.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2017-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/kore/seccomp.h b/include/kore/seccomp.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/accesslog.c b/src/accesslog.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/acme.c b/src/acme.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/bsd.c b/src/bsd.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/buf.c b/src/buf.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/cli.c b/src/cli.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2014-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/config.c b/src/config.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/connection.c b/src/connection.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/curl.c b/src/curl.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/domain.c b/src/domain.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/filemap.c b/src/filemap.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/fileref.c b/src/fileref.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/http.c b/src/http.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/json.c b/src/json.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/keymgr.c b/src/keymgr.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2017-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/kore.c b/src/kore.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/linux.c b/src/linux.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/log.c b/src/log.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Joris Vink <joris@coders.se> + * Copyright (c) 2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/mem.c b/src/mem.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/module.c b/src/module.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/msg.c b/src/msg.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2015-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/net.c b/src/net.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/pgsql.c b/src/pgsql.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2014-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/pool.c b/src/pool.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/python.c b/src/python.c @@ -1,6 +1,6 @@ /* * Copyright (c) 2016 Stanislav Yudin <stan@endlessinsomnia.com> - * Copyright (c) 2017-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2017-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/route.c b/src/route.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Joris Vink <joris@coders.se> + * Copyright (c) 2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/runtime.c b/src/runtime.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2017-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/seccomp.c b/src/seccomp.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2019-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/timer.c b/src/timer.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2016-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/utils.c b/src/utils.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/validator.c b/src/validator.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/websocket.c b/src/websocket.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2014-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/src/worker.c b/src/worker.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2021 Joris Vink <joris@coders.se> + * Copyright (c) 2013-2022 Joris Vink <joris@coders.se> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above