mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
* Added HTTPS support.
* Added SocketCore. Socket is now handle class for SocketCore. * Fixed bug in ChunkedEncoding: expanding buffer size is wrong * Fixed bug in DownloadCommand: In Chunked Encoding, it wrongly adds to Segment.ds buff length from the socket.
This commit is contained in:
parent
8acb1181f9
commit
2c732211f4
21 changed files with 246 additions and 16 deletions
|
@ -25,7 +25,7 @@
|
|||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
||||
#define MAX_BUFSIZE 8192
|
||||
#define MAX_BUFSIZE (1024*1024)
|
||||
|
||||
ChunkedEncoding::ChunkedEncoding() {
|
||||
strbufSize = 4096;
|
||||
|
@ -161,11 +161,11 @@ void ChunkedEncoding::addBuffer(const char* inbuf, int inlen) {
|
|||
if(strlen(strbuf)+inlen+1 > MAX_BUFSIZE) {
|
||||
throw new DlAbortEx(EX_TOO_LARGE_CHUNK, strlen(strbuf)+inlen+1);
|
||||
}
|
||||
char* temp = new char[strlen(strbuf)+inlen+1];
|
||||
strbufSize = strlen(strbuf)+inlen+1;
|
||||
char* temp = new char[strbufSize];
|
||||
memcpy(temp, strbuf, strlen(strbuf)+1);
|
||||
delete [] strbuf;
|
||||
strbuf = temp;
|
||||
strbufSize = strlen(strbuf);
|
||||
}
|
||||
int origlen = strlen(strbuf);
|
||||
memcpy(strbuf+origlen, inbuf, inlen);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue