Changeset 1605
- Timestamp:
- 03/22/08 21:56:21 (7 months ago)
- Files:
-
- nepenthes/trunk/nepenthes-core/include/Config.hpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/include/DownloadUrl.hpp (modified) (3 diffs)
- nepenthes/trunk/nepenthes-core/src/Config.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/DNSManager.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/DNSResult.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/Download.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/DownloadBuffer.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/DownloadManager.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/DownloadUrl.cpp (modified) (1 diff)
- nepenthes/trunk/nepenthes-core/src/EventManager.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
nepenthes/trunk/nepenthes-core/include/Config.hpp
r691 r1605 53 53 #endif 54 54 55 #include <cstring> 56 55 57 using namespace std; 56 58 nepenthes/trunk/nepenthes-core/include/DownloadUrl.hpp
r332 r1605 33 33 34 34 #include <string> 35 #include <typeinfo> 35 36 36 37 using namespace std; … … 39 40 namespace nepenthes 40 41 { 41 42 42 43 43 /** … … 48 48 const char *protocolName; 49 49 uint16_t port; 50 } ;50 } foo; 51 51 52 52 nepenthes/trunk/nepenthes-core/src/Config.cpp
r336 r1605 353 353 szHexConv[0] = data->getChar(); 354 354 szHexConv[1] = data->getChar(); 355 szHexConv[ 3] = 0;355 szHexConv[2] = 0; /* 3 looked like a typo */ 356 356 // printf("uint32_t i is here %i\n",i); 357 357 // printf("Converting %i %c%c -> %i\n",i, szHexConv[0],szHexConv[1], (unsigned char)strtol(szHexConv,NULL,16) ); nepenthes/trunk/nepenthes-core/src/DNSManager.cpp
r550 r1605 43 43 #include "Nepenthes.hpp" 44 44 #include "LogManager.hpp" 45 46 #include <cstring> 45 47 46 48 using namespace nepenthes; nepenthes/trunk/nepenthes-core/src/DNSResult.cpp
r836 r1605 33 33 #include "DNSQuery.hpp" 34 34 #include "Utilities.hpp" 35 36 #include <cstring> 35 37 36 38 using namespace nepenthes; nepenthes/trunk/nepenthes-core/src/Download.cpp
r332 r1605 33 33 #include "Nepenthes.hpp" 34 34 #include "LogManager.hpp" 35 36 #include <cstring> 35 37 36 38 using namespace nepenthes; nepenthes/trunk/nepenthes-core/src/DownloadBuffer.cpp
r332 r1605 33 33 #include "Nepenthes.hpp" 34 34 #include "LogManager.hpp" 35 36 #include <cstring> 35 37 36 38 using namespace nepenthes; nepenthes/trunk/nepenthes-core/src/DownloadManager.cpp
r1548 r1605 42 42 #include "SubmitEvent.hpp" 43 43 #include "EventManager.hpp" 44 45 #include <cstdlib> 44 46 45 47 using namespace std; nepenthes/trunk/nepenthes-core/src/DownloadUrl.cpp
r341 r1605 39 39 #include "Nepenthes.hpp" 40 40 #include "LogManager.hpp" 41 42 #include <cstdlib> 41 43 42 44 using namespace nepenthes; nepenthes/trunk/nepenthes-core/src/EventManager.cpp
r1410 r1605 34 34 35 35 #include "LogManager.hpp" 36 37 #include <cstdlib> 36 38 37 39 using namespace nepenthes;
