|
| int | fcgi_init (void) |
| |
| void | fcgi_shutdown (void) |
| |
| int | fcgi_is_fastcgi (void) |
| |
| int | fcgi_is_closed (fcgi_request *req) |
| |
| void | fcgi_close (fcgi_request *req, int force, int destroy) |
| |
| int | fcgi_in_shutdown (void) |
| |
| void | fcgi_terminate (void) |
| |
| int | fcgi_listen (const char *path, int backlog) |
| |
| fcgi_request * | fcgi_init_request (int listen_socket, void(*on_accept)(void), void(*on_read)(void), void(*on_close)(void)) |
| |
| void | fcgi_destroy_request (fcgi_request *req) |
| |
| void | fcgi_set_allowed_clients (char *ip) |
| |
| int | fcgi_accept_request (fcgi_request *req) |
| |
| int | fcgi_finish_request (fcgi_request *req, int force_close) |
| |
| const char * | fcgi_get_last_client_ip (void) |
| |
| void | fcgi_set_in_shutdown (int new_value) |
| |
| void | fcgi_request_set_keep (fcgi_request *req, int new_value) |
| |
| int | fcgi_has_env (fcgi_request *req) |
| |
| char * | fcgi_getenv (fcgi_request *req, const char *var, int var_len) |
| |
| char * | fcgi_putenv (fcgi_request *req, char *var, int var_len, char *val) |
| |
| char * | fcgi_quick_getenv (fcgi_request *req, const char *var, int var_len, unsigned int hash_value) |
| |
| char * | fcgi_quick_putenv (fcgi_request *req, char *var, int var_len, unsigned int hash_value, char *val) |
| |
| void | fcgi_loadenv (fcgi_request *req, fcgi_apply_func load_func, zval *array) |
| |
| int | fcgi_read (fcgi_request *req, char *str, int len) |
| |
| int | fcgi_write (fcgi_request *req, fcgi_request_type type, const char *str, int len) |
| |
| int | fcgi_flush (fcgi_request *req, int end) |
| |
| int | fcgi_end (fcgi_request *req) |
| |
| void | fcgi_set_mgmt_var (const char *name, size_t name_len, const char *value, size_t value_len) |
| |
| void | fcgi_free_mgmt_var_cb (zval *zv) |
| |