forked from irwir/eMule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaps.h
79 lines (74 loc) · 2.55 KB
/
Maps.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
Copyright (C)2003 Barry Dunne (http://www.emule-project.net)
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
// Note To Mods //
/*
Please do not change anything here and release it..
There is going to be a new forum created just for the Kademlia side of the client..
If you feel there is an error or a way to improve something, please
post it in the forum first and let us look at it.. If it is a real improvement,
it will be added to the offical client.. Changing something without knowing
what all it does can cause great harm to the network if released in mass form..
Any mod that changes anything within the Kademlia side will not be allowed to advertise
there client on the eMule forum..
*/
#pragma once
#include <map>
#include <list>
#include <set>
#include "../utils/UInt128.h"
#include "../../MapKey.h"
namespace Kademlia
{
class CContact;
class CSearch;
class CKadTag;
class CRoutingZone;
class CEntry;
class CKadTagValueString;
typedef std::map<CUInt128, CContact*> ContactMap;
typedef std::list<CContact*> ContactList;
typedef CTypedPtrList<CPtrList, CContact*> _ContactList;
typedef std::list<CUInt128> UIntList;
typedef std::list<CKadTag*> TagList;
typedef std::list<CKadTagValueString> WordList;
typedef std::map<CUInt128, CSearch*> SearchMap;
typedef std::map<CRoutingZone*, CRoutingZone*> EventMap;
typedef CTypedPtrList<CPtrList, Kademlia::CEntry*> CKadEntryPtrList;
struct Source
{
CUInt128 uSourceID;
CKadEntryPtrList ptrlEntryList;
};
typedef CMap<CCKey,const CCKey&,Source*,Source*> CSourceKeyMap;
struct KeyHash
{
CUInt128 uKeyID;
CSourceKeyMap mapSource;
};
typedef CTypedPtrList<CPtrList, Source*> CKadSourcePtrList;
struct SrcHash
{
CUInt128 uKeyID;
CKadSourcePtrList ptrlistSource;
};
struct Load
{
CUInt128 uKeyID;
uint32 uTime;
};
typedef CMap<CCKey,const CCKey&,KeyHash*,KeyHash*> CKeyHashMap;
typedef CMap<CCKey,const CCKey&,SrcHash*,SrcHash*> CSrcHashMap;
typedef CMap<CCKey,const CCKey&,Load*,Load*> CLoadMap;
}