first (destructive) public commit for the 0.9.5 branch

This commit is contained in:
roberto@sirius
2010-02-10 17:28:58 +01:00
parent e0882ed8df
commit 2e29b6b234
17 changed files with 408 additions and 139 deletions
+4 -2
View File
@@ -1,7 +1,9 @@
#include "../../uwsgi.h"
void uwsgi_init(struct uwsgi_server *uwsgi){
fprintf(stderr,"i am the example plugin initialization function\n");
/* gcc `python2.5-config --cflags` -o example_plugin.so -fPIC -shared example_plugin.c */
void uwsgi_init(struct uwsgi_server *uwsgi, char *args){
fprintf(stderr,"i am the example plugin initialization function with arg: %s\n", args);
}
int uwsgi_request(struct uwsgi_server *uwsgi, struct wsgi_request *wsgi_req, char *buffer) {