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 ce360e15d6886176693f6bce8333e078180c6705
parent 8f743213aad3ee13cf10d7512cace9913f287feb
Author: Joris Vink <joris@coders.se>
Date:   Thu,  8 Oct 2020 20:26:11 +0200

Update examples with latest single binary changes.

- Use kore_default_getopt() to let Kore do all argument parsing
  for the examples. They don't do any option parsing themselves.

Diffstat:
examples/async-curl/src/init.c | 24++++++++++++++++++++++++
examples/nohttp/conf/nohttp.conf | 2--
examples/nohttp/src/init.c | 24++++++++++++++++++++++++
examples/pipe_task/conf/pipe_task.conf | 2--
examples/pipe_task/src/init.c | 24++++++++++++++++++++++++
examples/python-async/src/init.c | 24++++++++++++++++++++++++
examples/python-echo/src/init.c | 24++++++++++++++++++++++++
examples/tasks/src/init.c | 24++++++++++++++++++++++++
8 files changed, 144 insertions(+), 4 deletions(-)

diff --git a/examples/async-curl/src/init.c b/examples/async-curl/src/init.c @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2020 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 + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <kore/kore.h> + +/* Let kore handle the default option parsing. */ +void +kore_parent_configure(int argc, char **argv) +{ + kore_default_getopt(argc, argv); +} diff --git a/examples/nohttp/conf/nohttp.conf b/examples/nohttp/conf/nohttp.conf @@ -1,7 +1,5 @@ # nohttp configuration -load ./nohttp.so - server tls { bind 127.0.0.1 8888 connection_setup } diff --git a/examples/nohttp/src/init.c b/examples/nohttp/src/init.c @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2020 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 + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <kore/kore.h> + +/* Let kore handle the default option parsing. */ +void +kore_parent_configure(int argc, char **argv) +{ + kore_default_getopt(argc, argv); +} diff --git a/examples/pipe_task/conf/pipe_task.conf b/examples/pipe_task/conf/pipe_task.conf @@ -4,8 +4,6 @@ server tls { bind 127.0.0.1 8888 } -load ./pipe_task.so init - tls_dhparam dh2048.pem websocket_maxframe 65536 diff --git a/examples/pipe_task/src/init.c b/examples/pipe_task/src/init.c @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2020 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 + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <kore/kore.h> + +/* Let kore handle the default option parsing. */ +void +kore_parent_configure(int argc, char **argv) +{ + kore_default_getopt(argc, argv); +} diff --git a/examples/python-async/src/init.c b/examples/python-async/src/init.c @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2020 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 + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <kore/kore.h> + +/* Let kore handle the default option parsing. */ +void +kore_parent_configure(int argc, char **argv) +{ + kore_default_getopt(argc, argv); +} diff --git a/examples/python-echo/src/init.c b/examples/python-echo/src/init.c @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2020 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 + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <kore/kore.h> + +/* Let kore handle the default option parsing. */ +void +kore_parent_configure(int argc, char **argv) +{ + kore_default_getopt(argc, argv); +} diff --git a/examples/tasks/src/init.c b/examples/tasks/src/init.c @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2020 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 + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <kore/kore.h> + +/* Let kore handle the default option parsing. */ +void +kore_parent_configure(int argc, char **argv) +{ + kore_default_getopt(argc, argv); +}