1//
2// This file is part of the aMule Project.
3//
4// Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
5// Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / http://www.emule-project.net )
6//
7// Any parts of this program derived from the xMule, lMule or eMule project,
8// or contributed by third-party developers are copyrighted by their
9// respective authors.
10//
11// This program is free software; you can redistribute it and/or modify
12// it under the terms of the GNU General Public License as published by
13// the Free Software Foundation; either version 2 of the License, or
14// (at your option) any later version.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
24//
25
26#ifndef KADCONSTANTS_H
27#define KADCONSTANTS_H
28
29#include <common/Macros.h>
30
31// MOD Note: Do not change this part - Merkur
32
33#define	KADEMLIAASKTIME			SEC2MS(1)	//1 second
34#define	KADEMLIATOTALFILE		5		//Total files to search sources for.
35#define	KADEMLIAREASKTIME		HR2MS(1)	//1 hour
36#define	KADEMLIAPUBLISHTIME		SEC(2)		//2 second
37#define	KADEMLIATOTALSTORENOTES		1		//Total hashes to store.
38#define	KADEMLIATOTALSTORESRC		3		//Total hashes to store.
39#define	KADEMLIATOTALSTOREKEY		2		//Total hashes to store.
40#define	KADEMLIAREPUBLISHTIMES		HR2S(5)		//5 hours
41#define	KADEMLIAREPUBLISHTIMEN		HR2S(24)	//24 hours
42#define	KADEMLIAREPUBLISHTIMEK		HR2S(24)	//24 hours
43#define	KADEMLIADISCONNECTDELAY		MIN2S(20)	//20 mins
44#define	KADEMLIAMAXINDEX		50000		//Total keyword indexes.
45#define	KADEMLIAMAXENTRIES		60000		//Total keyword entries.
46#define	KADEMLIAMAXSOURCEPERFILE	1000		//Max number of sources per file in index.
47#define	KADEMLIAMAXNOTESPERFILE		150		//Max number of notes per entry in index.
48#define	KADEMLIAFIREWALLCHECKS		4		//Firewallcheck Request at a time
49// MOD Note: end
50
51// Kad parameters
52#define	KADEMLIA_FIND_VALUE		0x02
53#define	KADEMLIA_STORE			0x04
54#define	KADEMLIA_FIND_NODE		0x0B
55#define	KADEMLIA_FIND_VALUE_MORE	KADEMLIA_FIND_NODE
56
57#endif // KADCONSTANTS_H
58