mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
2006-07-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
To add Metalink support(http/ftp only): * src/AbstractCommand.h (tryReserved): New function. * src/AbstractCommand.cc (execute): Call tryReserved(). (tryReserved): New function. * src/Request.h (Requests): New type definition. * src/SegmentMan.h (reserved): New variable. * src/Util.h (fileChecksum): New function. (toUpper): New function. (toLower): New function. * src/Util.cc (messageDigest.h): Included. (trim): Trim \r\n\t. (fileChecksum): New function. (toUpper): New function. (toLower): New function. * src/main.cc (normalDownload): New function. (main): Added 2 command-line options: metalink-file, metalink-connection. Their usage has not been written yet. * src/MetalinkProcessor.h: New class. * src/Xml2MetalinkProcessor.h: New class. * src/Xml2MetalinkProcessor.cc: New class. * src/MetalinkEntry.h: New class. * src/MetalinkEntry.cc: New class. * src/MetalinkResource.h: New class. * src/MetalinkResource.cc: New class. To add md5 message digest checking: * src/messageDigest.h: Rewritten. * src/MultiDiskWriter.cc: Updated according to the changes in messageDigest.h. * src/ShaVisitor.cc: Updated according to the changes in messageDigest.h. * src/Util.cc: Updated according to the changes in messageDigest.h. * src/AbstractDiskWriter.cc: Updated according to the changes in messageDigest.h. To fix a bug that causes segfault when the payload length in peer message is less than 0: * src/PeerConnection.cc: (receiveMessage): Fixed the bug. * src/PeerMessageUtil.cc (checkLength): Throw an exception if length is less than or equals to 0. To add new interfaces to Base64 encoding/decoding: * src/Base64.h (part_encode): Changed the method signature. (encode): New function(overload). (decode): New function(overload). * src/Base64.cc (part_encode): Rewritten. (encode): Rewritten. (encode): New function(overload). To prevent a peer to download same piece if there is an error in checksum: * src/PieceMessage.cc (receivedAction): Call peerInteraction->abortPiece().
This commit is contained in:
parent
003a474357
commit
78eff23254
39 changed files with 1724 additions and 156 deletions
|
@ -28,12 +28,21 @@ using namespace std;
|
|||
class Base64
|
||||
{
|
||||
private:
|
||||
static void part_encode(const unsigned char* sub, int subLength,
|
||||
unsigned char* buf);
|
||||
|
||||
static string part_encode(const string& subplain);
|
||||
static string part_decode(const string& subCrypted);
|
||||
static char getValue(char ch);
|
||||
public:
|
||||
static string encode(const string& plain);
|
||||
// caller must deallocate the memory used by result.
|
||||
static void encode(const unsigned char* src, int srcLength,
|
||||
unsigned char*& result, int& resultLength);
|
||||
static string decode(const string& crypted);
|
||||
// caller must deallocate the memory used by result.
|
||||
static void decode(const unsigned char* src, int srcLength,
|
||||
unsigned char*& result, int& resultLength);
|
||||
};
|
||||
|
||||
#endif // _BASE64_H_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue