webif/var/mongoose/lib/chunked
hummypkg 64b73ee14b create chunked module and add iajax. Update pkg to handled chunked responses
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@273 2a923420-c742-0410-a762-8d5b09965624
2011-07-14 22:22:54 +00:00

11 lines
202 B
Plaintext
Executable File

proc chunk {chk} {
puts -nonewline [format "%x\r\n" [string length $chk]]
puts -nonewline "$chk\r\n"
flush stdout
}
# Kick the browser into life...
chunk [string range [format "%301d" 0] 1 end-1]