/* Snownews - A lightweight console RSS newsreader * $Id: netio.h 910 2005-03-19 17:48:09Z kiza $ * * Copyright 2003-2004 Oliver Feiler * http://kiza.kcore.de/software/snownews/ * * netio.h * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * 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 General Public License for more details. * * You should have received a copy of the GNU 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 * */ #ifndef NETIO_H #define NETIO_H struct feed; char * DownloadFeed (char * url, struct feed * cur_ptr, int suppressoutput); typedef enum { NET_ERR_OK, /* Init errors */ NET_ERR_URL_INVALID, /* Connect errors */ NET_ERR_SOCK_ERR, NET_ERR_HOST_NOT_FOUND, NET_ERR_CONN_REFUSED, NET_ERR_CONN_FAILED, NET_ERR_TIMEOUT, NET_ERR_UNKNOWN, /* Transfer errors */ NET_ERR_REDIRECT_COUNT_ERR, NET_ERR_REDIRECT_ERR, NET_ERR_HTTP_410, NET_ERR_HTTP_404, NET_ERR_HTTP_NON_200, NET_ERR_HTTP_PROTO_ERR, NET_ERR_AUTH_FAILED, NET_ERR_AUTH_NO_AUTHINFO, NET_ERR_AUTH_GEN_AUTH_ERR, NET_ERR_AUTH_UNSUPPORTED, NET_ERR_GZIP_ERR, NET_ERR_CHUNKED } netio_error_type; #endif