http package (only partially working)
This commit is contained in:
36
packages/http/http_stream.c
Normal file
36
packages/http/http_stream.c
Normal file
@@ -0,0 +1,36 @@
|
||||
/* $Id$
|
||||
|
||||
Part of SWI-Prolog
|
||||
|
||||
Author: Jan Wielemaker
|
||||
E-mail: wielemak@science.uva.nl
|
||||
WWW: http://www.swi-prolog.org
|
||||
Copyright (C): 2007, University of Amsterdam
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "http_error.c"
|
||||
#include "http_chunked.c"
|
||||
#include "cgi_stream.c"
|
||||
#include "stream_range.c"
|
||||
|
||||
install_t
|
||||
install_http_stream()
|
||||
{ init_errors();
|
||||
install_http_chunked();
|
||||
install_cgi_stream();
|
||||
install_stream_range();
|
||||
}
|
Reference in New Issue
Block a user