summaryrefslogtreecommitdiffabout
path: root/src/plaincgi.cc
blob: 6934748101c9c749f23e1773187a4c6443acb59f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "kingate/plaincgi.h"
#include "kingate/exception.h"

namespace kingate {

	plaincgi_interface::plaincgi_interface() {
	    for(char **p = environ; *p; p++) {
		const char *e = strchr(*p,'=');
		if(!e){
		    // XXX: check if we have it already?
		    metavars[*p] = string(0);
		}else{
		    int l = e-*p; e++;
		    // XXX: check if we have it already?
		    metavars[string(*p,l)]=e;
		}
	    }
	}
	plaincgi_interface::~plaincgi_interface() {
	    cout.flush();
	    cerr.flush();
	}

}