Пример #1
0
static int uwsgi_router_httpdumb(struct uwsgi_route *ur, char *args) {
        ur->custom = 0x04;
        return uwsgi_router_http(ur, args);
}
Пример #2
0
static int uwsgi_router_proxyhttp(struct uwsgi_route *ur, char *args) {
	ur->custom = 1;
	return uwsgi_router_http(ur, args);
}
Пример #3
0
static int uwsgi_router_http_connect(struct uwsgi_route *ur, char *args) {
        ur->custom = 0x02;
        return uwsgi_router_http(ur, args);
}