Upstream tarball 20080901
[amule.git] / src / AsyncDNS.cpp
blob3fd0f77ea89ade5160b8c3a2bba5c489909fd8ce
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2004-2008 Angel Vidal ( kry@amule.org )
5 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
6 // Copyright (c) 2002-2008 Merkur ( devs@emule-project.net / http://www.emule-project.net )
7 //
8 // Any parts of this program derived from the xMule, lMule or eMule project,
9 // or contributed by third-party developers are copyrighted by their
10 // respective authors.
12 // This program is free software; you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation; either version 2 of the License, or
15 // (at your option) any later version.
17 // This program is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with this program; if not, write to the Free Software
24 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "AsyncDNS.h" // Interface declaration
29 #include "InternalEvents.h" // Needed for wxEVT_*
30 #include "NetworkFunctions.h" // Needed for StringHosttoUint32
33 CAsyncDNS::CAsyncDNS(const wxChar* ipName, DnsSolveType type, wxEvtHandler* handler, void* socket)
34 : wxThread(wxTHREAD_DETACHED)
36 m_type = type;
37 m_ipName = ipName;
38 m_socket = socket;
39 m_handler = handler;
43 wxThread::ExitCode CAsyncDNS::Entry()
45 uint32 result = StringHosttoUint32(m_ipName);
46 uint32 event_id = 0;
47 void* event_data = NULL;
49 switch (m_type) {
50 case DNS_UDP:
51 event_id = wxEVT_CORE_UDP_DNS_DONE;
52 event_data = m_socket;
53 break;
54 case DNS_SOURCE:
55 event_id = wxEVT_CORE_SOURCE_DNS_DONE;
56 event_data = NULL;
57 break;
58 case DNS_SERVER_CONNECT:
59 event_id = wxEVT_CORE_SERVER_DNS_DONE;
60 event_data = m_socket;
61 break;
62 default:
63 printf("WRONG TYPE ID ON ASYNC DNS SOLVING!!!\n");
66 if (event_id) {
67 CMuleInternalEvent evt(event_id);
68 evt.SetExtraLong(result);
69 evt.SetClientData(event_data);
70 wxPostEvent(m_handler,evt);
73 return NULL;
75 // File_checked_for_headers