diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2026-07-04 04:03:12 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2026-07-04 04:03:12 +0000 |
| commit | 24daa5813f277023f7b8453338870369bf00a3ca (patch) | |
| tree | fc19981595bd9be15daef821c0b5259c4f4907cb /src/libtipidee/tipidee_fcgi_params.c | |
| parent | 45808dbc6dc1b90fa512add692252bc15760a214 (diff) | |
| download | tipidee-24daa5813f277023f7b8453338870369bf00a3ca.tar.gz | |
Implement FastCGI, initial version
Diffstat (limited to 'src/libtipidee/tipidee_fcgi_params.c')
| -rw-r--r-- | src/libtipidee/tipidee_fcgi_params.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libtipidee/tipidee_fcgi_params.c b/src/libtipidee/tipidee_fcgi_params.c new file mode 100644 index 0000000..cac4e50 --- /dev/null +++ b/src/libtipidee/tipidee_fcgi_params.c @@ -0,0 +1,8 @@ +/* ISC license. */ + +#include <tipidee/fcgi.h> + +int tipidee_fcgi_params (tipidee_fcgi *fc, char const *s, size_t len, tain *stamp) +{ + return tipidee_fcgi_put(fc, FCGI_PARAMS, s, len, stamp) == len ; +} |
