Show hcache.h syntax highlighted
/*
* $Id: hcache.h 13263 2007-04-07 00:23:15Z cbiere $
*
* Copyright (c) 2002-2003, Raphael Manfredi, Richard Eckart
*
*----------------------------------------------------------------------
* 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
*
* Host cache management.
*
* @author Raphael Manfredi
* @author Richard Eckart
* @date 2002-2003
*/
#ifndef _core_hcache_h_
#define _core_hcache_h_
#include "common.h"
#include "if/core/hcache.h"
#include "if/core/hosts.h"
/*
* Global Functions
*/
void hcache_init(void);
void hcache_shutdown(void);
void hcache_close(void);
void hcache_retrieve_all(void);
void hcache_timer(time_t now);
const gchar *host_type_to_string(host_type_t type);
const gchar *hcache_type_to_string(hcache_type_t type);
gboolean hcache_add(
hcache_type_t type, const host_addr_t addr, guint16 port,
const gchar *what);
gboolean hcache_add_caught(
host_type_t type, const host_addr_t addr, guint16 port,
const gchar *what);
gboolean hcache_add_valid(
host_type_t type, const host_addr_t addr, guint16 port,
const gchar *what);
gboolean hcache_node_is_bad(const host_addr_t addr);
void hcache_prune(hcache_type_t type);
guint hcache_size(host_type_t type);
gboolean hcache_is_low(host_type_t type);
gint hcache_fill_caught_array(
host_type_t type, gnet_host_t *hosts, gint hcount);
gboolean hcache_get_caught(host_type_t type, host_addr_t *addr, guint16 *port);
gboolean hcache_find_nearby(host_type_t type,
host_addr_t *addr, guint16 *port);
void hcache_store_if_dirty(host_type_t type);
#endif /* _core_hcache_h_ */
See more files for this project here