Lines Matching full:content
54 nameref content="formdata.content"
59 content=""
65 content+="--${formdata.boundary}\n"
66 content+="Content-Disposition: form-data; name=\"${element.name}\"\n"
67 content+="\n"
69 # "print" when putting the content on the wire.
70 content+="${element.data//\\/\\\\}\n" # fixme: may need encoding for non-ASCII data
73 # we have to de-quote the content before we can count the real numer of bytes in the payload
74 tmp="$(print -- "${content}")"
77 # add content tail (which MUST not be added to the content length)
78 content+="--${formdata.boundary}--\n"
104 ~(Eli)Content-Type:.*)
107 ~(Eli)Content-Length:[[:blank:]]*[0-9]*)
226 typeset content
231 typeset content=""
241 [4]=( name="content" data="$1" )
245 content="${mimeform.content}"
251 request+="Content-Type: multipart/form-data; boundary=${boundary}\r\n"
252 request+="Content-Length: $(( mimeform.content_length ))\r\n"
260 print -n -- "${content}\r\n"