mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-05-15 11:13:39 +00:00
18 lines
411 B
C
18 lines
411 B
C
#include "../../uwsgi.h"
|
|
|
|
|
|
int uwsgi_cplusplus_init(void);
|
|
int uwsgi_cplusplus_request(struct wsgi_request *);
|
|
void uwsgi_cplusplus_after_request(struct wsgi_request *);
|
|
|
|
struct uwsgi_plugin cplusplus_plugin = {
|
|
|
|
.name = "cplusplus",
|
|
.modifier1 = 250,
|
|
.init = uwsgi_cplusplus_init,
|
|
.request = uwsgi_cplusplus_request,
|
|
.after_request = uwsgi_cplusplus_after_request,
|
|
|
|
};
|
|
|