* 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:
Tatsuhiro Tsujikawa 2006-02-17 18:51:12 +00:00
parent 8acb1181f9
commit 2c732211f4
21 changed files with 246 additions and 16 deletions

View file

@ -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);