~ubuntu-branches/ubuntu/karmic/gtk-gnutella/karmic

« back to all changes in this revision

Viewing changes to src/core/dq.h

  • Committer: Bazaar Package Importer
  • Author(s): Anand Kumria
  • Date: 2005-08-04 11:32:05 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050804113205-q746i4lgo3rtlegn
Tags: 0.95.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: dq.h,v 1.7 2005/06/25 01:37:39 daichik Exp $
 
3
 *
 
4
 * Copyright (c) 2004, Raphael Manfredi
 
5
 *
 
6
 *----------------------------------------------------------------------
 
7
 * This file is part of gtk-gnutella.
 
8
 *
 
9
 *  gtk-gnutella is free software; you can redistribute it and/or modify
 
10
 *  it under the terms of the GNU General Public License as published by
 
11
 *  the Free Software Foundation; either version 2 of the License, or
 
12
 *  (at your option) any later version.
 
13
 *
 
14
 *  gtk-gnutella is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with gtk-gnutella; if not, write to the Free Software
 
21
 *  Foundation, Inc.:
 
22
 *      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
23
 *----------------------------------------------------------------------
 
24
 */
 
25
 
 
26
/**
 
27
 * @ingroup core
 
28
 * @file
 
29
 *
 
30
 * Dynamic querying.
 
31
 *
 
32
 * @author Raphael Manfredi
 
33
 * @date 2004
 
34
 */
 
35
 
 
36
#ifndef _core_dq_h_
 
37
#define _core_dq_h_
 
38
 
 
39
#include <glib.h>
 
40
 
 
41
#include "pmsg.h"
 
42
#include "qrp.h"
 
43
#include "search.h"
 
44
 
 
45
/*
 
46
 * Public interface.
 
47
 */
 
48
 
 
49
struct gnutella_node;
 
50
struct query_hashvec;
 
51
 
 
52
void dq_init(void);
 
53
void dq_close(void);
 
54
 
 
55
void dq_launch_net(struct gnutella_node *n, struct query_hashvec *qhv);
 
56
void dq_node_removed(guint32 node_id);
 
57
gboolean dq_got_results(gchar *muid, guint count);
 
58
gboolean dq_oob_results_ind(gchar *muid, gint count);
 
59
void dq_oob_results_got(const gchar *muid, guint count);
 
60
void dq_got_query_status(gchar *muid, guint32 node_id, guint16 kept);
 
61
void dq_launch_local(gnet_search_t handle, pmsg_t *mb, query_hashvec_t *qhv);
 
62
void dq_search_closed(gnet_search_t handle);
 
63
gboolean dq_get_results_wanted(gchar *muid, guint32 *wanted);
 
64
 
 
65
#endif  /* _core_dq_h_ */
 
66
 
 
67
/* vi: set ts=4 sw=4 cindent: */