moe testing work.
This commit is contained in:
parent
80d31540d9
commit
d74093b48a
@ -46,11 +46,12 @@ namespace jet {
|
||||
coreutils::ZString contentLength(getenv("CONTENT_LENGTH"));
|
||||
coreutils::ZString contentType(getenv("CONTENT_TYPE"));
|
||||
|
||||
coreutils::MString postdata;
|
||||
postdata.read(0); // TODO: Need to limit the read characters to the CONTENT-LENGTH value;
|
||||
if(contentType == "multipart/form-data") {
|
||||
coreutils::IMFMultipart postdata(0, contentLength.asInteger());
|
||||
|
||||
}
|
||||
|
||||
|
||||
if(contentType == "multipart/form-data")
|
||||
global.setupFormData(postdata);
|
||||
else if(contentType == "application/x-www-form-urlencoded")
|
||||
global.setupFormURLEncoded(postdata);
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
export REQUEST_METHOD=POST
|
||||
export CONTENT_LENGTH=200
|
||||
export CONTENT_TYPE=application/x-www-form-urlencoded
|
||||
cat post.example.urlencoded | ./testpost.jet
|
||||
export CONTENT_LENGTH=619
|
||||
export CONTENT_TYPE=multipart/form-data
|
||||
cat post.example.formdata | ./testpost.jet
|
||||
|
Loading…
x
Reference in New Issue
Block a user