/* ********************************************************************* This source file is a part of the standard library of Scol For the latest info, see http://www.scolring.org Copyright (c) 2013 Stephane Bisaro aka Iri. This program 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 of the License, or (at your option) any later version. This program 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 program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to http://www.gnu.org/copyleft/lesser.txt ********************************************************************* */ /* * Standard functions for HTTP client request with libcurl library * See http://redmine.scolring.org/projects/tutorials/wiki/Scol_usage * for more informations */ /*! \file curl.pkg * \author Scol team * \version 0.1 * \copyright GNU Lesser General Public License 2.0 or later * \brief Scol Standard Library - New HTTP client request API * * \details This API provides some options to write HTTP client request routines for Scol * from the libcurl support library. This is newer than the INET API ( lib/std/http.pkg ). * \remark This API requires the list API ( lib/std/list.pkg ) and the string API * ( lib/std/string.pkg ) * * \remark Libcurl website : http://curl.haxx.se/libcurl/ **/ /*! \brief * \ingroup std_curl */ fun std_curlGet ()= 0;;