frankenphp/frankenphp.h

32 lines
731 B
C
Raw Normal View History

2021-09-24 16:52:20 +00:00
#ifndef _FRANKENPPHP_H
#define _FRANKENPPHP_H
2021-10-31 23:18:30 +00:00
#include <stdint.h>
int frankenphp_check_version();
2021-09-24 16:52:20 +00:00
int frankenphp_init();
void frankenphp_shutdown();
int frankenphp_create_server_context(uintptr_t requests_chan, char *worker_filename);
void frankenphp_update_server_context(
2021-10-31 23:18:30 +00:00
uintptr_t request,
const char *request_method,
char *query_string,
int64_t content_length,
char *path_translated,
char *request_uri,
const char *content_type,
char *auth_user,
char *auth_password,
int proto_num
);
int frankenphp_worker_reset_server_context();
uintptr_t frankenphp_clean_server_context();
int frankenphp_request_startup();
int frankenphp_execute_script(const char *file_name);
uintptr_t frankenphp_request_shutdown();
2021-09-24 16:52:20 +00:00
#endif