📄 kademliaudplistener.h
字号:
//// This file is part of the aMule Project.//// Copyright (c) 2004-2006 Angel Vidal (Kry) ( kry@amule.org )// Copyright (c) 2004-2006 aMule Team ( admin@amule.org / http://www.amule.org )// Copyright (c) 2003 Barry Dunne (http://www.emule-project.net)//// Any parts of this program derived from the xMule, lMule or eMule project,// or contributed by third-party developers are copyrighted by their// respective authors.//// 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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, pleasepost 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 knowingwhat 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 advertisethere client on the eMule forum..*/#ifndef __KAD_UDP_LISTENER_H__#define __KAD_UDP_LISTENER_H__#include "../utils/UInt128.h"#include "../io/ByteIO.h"#include "../../Types.h"class CKnownFile;class CMemFile;struct SSearchTerm;////////////////////////////////////////namespace Kademlia {////////////////////////////////////////class CSearch;class CKademliaUDPListener{ friend class CSearch;public: virtual ~CKademliaUDPListener() {}; void bootstrap(uint32 ip, uint16 port); void firewalledCheck(uint32 ip, uint16 port); void sendMyDetails(byte opcode, uint32 ip, uint16 port); void publishPacket(uint32 ip, uint16 port, const CUInt128& targetID, const CUInt128& contactID, const TagList& tags); void sendNullPacket(byte opcode, uint32 ip, uint16 port); virtual void processPacket(const byte* data, uint32 lenData, uint32 ip, uint16 port); void sendPacket(const byte* data, uint32 lenData, uint32 destinationHost, uint16 destinationPort); void sendPacket(const byte *data, uint32 lenData, byte opcode, uint32 destinationHost, uint16 destinationPort); void sendPacket(CMemFile* data, byte opcode, uint32 destinationHost, uint16 destinationPort);private: void addContact (const byte* data, uint32 lenData, uint32 ip, uint16 port, uint16 tport = 0); void addContacts(const byte* data, uint32 lenData, uint16 numContacts); static SSearchTerm* CreateSearchExpressionTree(CMemFile& bio, int iLevel); static void Free(SSearchTerm* pSearchTerms); void processBootstrapRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processBootstrapResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processHelloRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processHelloResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processKademliaRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processKademliaResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processSearchRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processSearchResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processPublishRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processPublishResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processSearchNotesRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processSearchNotesResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processPublishNotesRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processPublishNotesResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processFirewalledRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processFirewalledResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processFirewalledResponse2 (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processFindBuddyRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processFindBuddyResponse (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void processCallbackRequest (const byte* packetData, uint32 lenPacket, uint32 ip, uint16 port); void DebugClientOutput(const wxString& place, uint32 ip, uint32 port);};} // End namespace#endif //__KAD_UDP_LISTENER_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -