2 // This file is part of the aMule Project.
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002 Merkur ( devs@emule-project.net / http://www.emule-project.net )
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
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.
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.
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
26 #ifndef KADCONSTANTS_H
27 #define KADCONSTANTS_H
29 // Kad search expression comparison operators
30 enum kad_search_compare
{
31 KAD_SEARCH_OP_GREATER_EQUAL
= 1, // eMule 0.40+; NOTE: this different than ED2K!
32 KAD_SEARCH_OP_LESS_EQUAL
// eMule 0.40+; NOTE: this different than ED2K!
35 // MOD Note: Do not change this part - Merkur
37 #define KADEMLIAASKTIME SEC2MS(1) //1 second
38 #define KADEMLIATOTALFILE 7 //Total files to search sources for.
39 #define KADEMLIAREASKTIME HR2MS(1) //1 hour
40 #define KADEMLIAPUBLISHTIME SEC(2) //2 second
41 #define KADEMLIATOTALSTORENOTES 1 //Total hashes to store.
42 #define KADEMLIATOTALSTORESRC 2 //Total hashes to store.
43 #define KADEMLIATOTALSTOREKEY 1 //Total hashes to store.
44 #define KADEMLIAREPUBLISHTIMES HR2S(5) //5 hours
45 #define KADEMLIAREPUBLISHTIMEN HR2S(24) //24 hours
46 #define KADEMLIAREPUBLISHTIMEK HR2S(24) //24 hours
47 #define KADEMLIADISCONNECTDELAY MIN2S(20) //20 mins
48 #define KADEMLIAMAXINDEX 50000 //Total keyword indexes.
49 #define KADEMLIAMAXENTRIES 60000 //Total keyword entries.
50 #define KADEMLIAMAXSOUCEPERFILE 300 //Max number of sources per file in index.
51 #define KADEMLIAMAXNOTESPERFILE 50 //Max number of notes per entry in index.
52 #define KADEMLIABUDDYTIMEOUT MIN2MS(10) // 10 min to receive the buddy
56 #define KADEMLIA_FIND_VALUE 0x02
57 #define KADEMLIA_STORE 0x04
58 #define KADEMLIA_FIND_NODE 0x0B
60 #endif // KADCONSTANTS_H