mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Updated copyright year.
This commit is contained in:
parent
26d277a8c5
commit
755d997fb1
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2022 - 2023 grunfink et al. (Fediverse: @grunfink@comam.es)
|
Copyright (c) 2022 - 2024 grunfink et al. (Fediverse: @grunfink@comam.es)
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_json.h"
|
#include "xs_json.h"
|
||||||
|
2
data.c
2
data.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_hex.h"
|
#include "xs_hex.h"
|
||||||
|
2
format.c
2
format.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_regex.h"
|
#include "xs_regex.h"
|
||||||
|
2
html.c
2
html.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_io.h"
|
#include "xs_io.h"
|
||||||
|
2
http.c
2
http.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_io.h"
|
#include "xs_io.h"
|
||||||
|
2
httpd.c
2
httpd.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_io.h"
|
#include "xs_io.h"
|
||||||
|
4
main.c
4
main.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_io.h"
|
#include "xs_io.h"
|
||||||
@ -12,7 +12,7 @@
|
|||||||
int usage(void)
|
int usage(void)
|
||||||
{
|
{
|
||||||
printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n");
|
printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n");
|
||||||
printf("Copyright (c) 2022 - 2023 grunfink et al. / MIT license\n");
|
printf("Copyright (c) 2022 - 2024 grunfink et al. / MIT license\n");
|
||||||
printf("\n");
|
printf("\n");
|
||||||
printf("Commands:\n");
|
printf("Commands:\n");
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef NO_MASTODON_API
|
#ifndef NO_MASTODON_API
|
||||||
|
|
||||||
|
2
snac.c
2
snac.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#define XS_IMPLEMENTATION
|
#define XS_IMPLEMENTATION
|
||||||
|
|
||||||
|
2
snac.h
2
snac.h
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#define VERSION "2.44-dev"
|
#define VERSION "2.44-dev"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_io.h"
|
#include "xs_io.h"
|
||||||
|
2
utils.c
2
utils.c
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_io.h"
|
#include "xs_io.h"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* snac - A simple, minimalistic ActivityPub instance */
|
/* snac - A simple, minimalistic ActivityPub instance */
|
||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#include "xs.h"
|
#include "xs.h"
|
||||||
#include "xs_json.h"
|
#include "xs_json.h"
|
||||||
|
2
xs.h
2
xs.h
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_H
|
#ifndef _XS_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_CURL_H
|
#ifndef _XS_CURL_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
This is an intentionally-dead-simple FastCGI implementation;
|
This is an intentionally-dead-simple FastCGI implementation;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_GLOB_H
|
#ifndef _XS_GLOB_H
|
||||||
|
|
||||||
|
2
xs_hex.h
2
xs_hex.h
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_HEX_H
|
#ifndef _XS_HEX_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_HTML_H
|
#ifndef _XS_HTML_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_HTTPD_H
|
#ifndef _XS_HTTPD_H
|
||||||
|
|
||||||
|
2
xs_io.h
2
xs_io.h
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_IO_H
|
#ifndef _XS_IO_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_JSON_H
|
#ifndef _XS_JSON_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_MATCH_H
|
#ifndef _XS_MATCH_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_MIME
|
#ifndef _XS_MIME
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_OPENSSL_H
|
#ifndef _XS_OPENSSL_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_RANDOM_H
|
#ifndef _XS_RANDOM_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_REGEX_H
|
#ifndef _XS_REGEX_H
|
||||||
|
|
||||||
|
2
xs_set.h
2
xs_set.h
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_SET_H
|
#ifndef _XS_SET_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_SOCKET_H
|
#ifndef _XS_SOCKET_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_TIME_H
|
#ifndef _XS_TIME_H
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_UNICODE_H
|
#ifndef _XS_UNICODE_H
|
||||||
|
|
||||||
|
2
xs_url.h
2
xs_url.h
@ -1,4 +1,4 @@
|
|||||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
|
||||||
|
|
||||||
#ifndef _XS_URL_H
|
#ifndef _XS_URL_H
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
/* fd50c72456b717bb235eec8fe5f712da5f695f2b 2023-12-27T12:51:14+01:00 */
|
/* 3e906b28aaa910cd79dd5eb1d88fda82201d28de 2024-01-04T09:20:12+01:00 */
|
||||||
|
Loading…
Reference in New Issue
Block a user