C and C++ web framework.
http://rapida.vilor.one/docs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
588 B
32 lines
588 B
2 years ago
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
|
||
|
/* Copyright 2022 Ivan Polyakov */
|
||
|
|
||
|
/*!
|
||
|
* \file fcgi.h
|
||
|
* \brief Rapida FastCGI server
|
||
|
*/
|
||
|
#ifndef RAPIDA_SERVERS_FCGI_H_ENTRY
|
||
|
#define RAPIDA_SERVERS_FCGI_H_ENTRY
|
||
|
|
||
|
#include "../app.h"
|
||
|
#include <fcgiapp.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*!
|
||
|
* \brief Starts Rapida FastCGI server.
|
||
|
* \param app Application instance.
|
||
|
* \param sock_path UNIX Socket path.
|
||
|
*
|
||
|
* \return Status. 0 is success.
|
||
|
*/
|
||
|
int rpd_fcgi_server_start(rpd_app *app, const char *sock_path);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* RAPIDA_SERVERS_FCGI_H_ENTRY */
|