--- gforth/proxy.fs 2007/12/31 19:02:24 1.13 +++ gforth/proxy.fs 2010/12/31 18:09:02 1.15 @@ -1,6 +1,6 @@ \ a http proxy -\ Copyright (C) 2000,2002,2003,2006,2007 Free Software Foundation, Inc. +\ Copyright (C) 2000,2002,2003,2006,2007,2010 Free Software Foundation, Inc. \ This file is part of Gforth. @@ -18,6 +18,7 @@ \ along with this program. If not, see http://www.gnu.org/licenses/. require unix/socket.fs +require string.fs Create crlf #cr c, #lf c, @@ -131,7 +132,7 @@ Variable data-buffer Content-Length @ IF Content-Length $@ s>number drop r> read-sized EXIT THEN Transfer-Encoding @ IF - Transfer-Encoding $@ s" chunked" str= 0= IF + Transfer-Encoding $@ s" chunked" str= IF r> read-chunked EXIT THEN THEN r> read-to-end ;