Show ignore.h syntax highlighted
/*
* $Id: ignore.h 14698 2007-08-25 15:43:11Z rmanfredi $
*
* Copyright (c) 2002-2003, Raphael Manfredi
*
*----------------------------------------------------------------------
* This file is part of gtk-gnutella.
*
* gtk-gnutella is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* gtk-gnutella 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 gtk-gnutella; if not, write to the Free Software
* Foundation, Inc.:
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*----------------------------------------------------------------------
*/
/**
* @ingroup core
* @file
*
* Management of download ignoring list.
*
* @author Raphael Manfredi
* @date 2002-2003
*/
#ifndef _core_ignore_h_
#define _core_ignore_h_
#include "common.h"
void ignore_init(void);
void ignore_close(void);
enum ignore_val {
IGNORE_FALSE = 0, /**< Do not ignore */
IGNORE_SHA1, /**< Ignore because of SHA1 */
IGNORE_NAMESIZE, /**< Ignore because of Name & Size */
IGNORE_LIBRARY, /**< Ignore because SHA1 present in library */
IGNORE_HOSTILE, /**< Ignore because IP address is hostile */
IGNORE_OURSELVES, /**< Ignore because IP:port points to ourselves */
IGNORE_SPAM /**< Ignore because SHA1 is known spam */
};
struct sha1;
enum ignore_val ignore_is_requested(
const gchar *file, filesize_t size, const struct sha1 *sha1);
const gchar *ignore_reason_to_string(enum ignore_val);
void ignore_add_filesize(const gchar *file, filesize_t size);
void ignore_add_sha1(const gchar *file, const struct sha1 *sha1);
const gchar *ignore_sha1_filename(const struct sha1 *sha1);
#endif /* _core_ignore_h_ */
/* vi: set ts=4 sw=4 cindent: */
See more files for this project here