summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-10 13:32:52 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-10 13:32:52 +0000
commite3425fe8f4a976071809c3df733bff6673378e41 (patch)
tree0e4831cd78b9930346a9981ef43616013346b622
parent1fc8a60a9b93ca61acbe05d7c28b630ecc3646fa (diff)
Tweaks
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5909 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/extra/m_ziplink.cpp79
1 files changed, 59 insertions, 20 deletions
diff --git a/src/modules/extra/m_ziplink.cpp b/src/modules/extra/m_ziplink.cpp
index e2c6ecadb..a595bd856 100644
--- a/src/modules/extra/m_ziplink.cpp
+++ b/src/modules/extra/m_ziplink.cpp
@@ -129,21 +129,31 @@ class ModuleZLib : public Module
if (session->status == IZIP_CLOSED)
return 1;
- readresult = read(fd, buffer, count);
+ int size = 0;
+ if (read(fd, &size, sizeof(size)) != sizeof(size))
+ return 0;
- if (readresult > 0)
- {
- unsigned char uncompr[count];
+ size = ntohl(size);
+
+ ServerInstance->Log(DEBUG,"Size of frame to read: %d", size);
+
+ unsigned char compr[size+1];
- if(session->status != IZIP_WAITFIRST)
+ readresult = read(fd, compr, size);
+
+ if (readresult == size)
+ {
+ if(session->status == IZIP_WAITFIRST)
{
- session->d_stream.next_in = (Bytef*)buffer;
- session->d_stream.avail_in = 0;
- session->d_stream.next_out = uncompr;
- if (inflateInit(&session->d_stream) != Z_OK)
- return -EBADF;
session->status = IZIP_OPEN;
}
+
+ session->d_stream.next_in = (Bytef*)compr;
+ session->d_stream.avail_in = 0;
+ session->d_stream.next_out = (Bytef*)buffer;
+ if (inflateInit(&session->d_stream) != Z_OK)
+ return -EBADF;
+ session->status = IZIP_OPEN;
while ((session->d_stream.total_out < count) && (session->d_stream.total_in < (unsigned int)readresult))
{
@@ -152,28 +162,51 @@ class ModuleZLib : public Module
break;
}
+ inflateEnd(&session->d_stream);
+
readresult = session->d_stream.total_out;
}
+ else
+ {
+ /* XXX: We need to buffer here, really. */
+ ServerInstance->Log(DEBUG,"Didnt read whole frame!");
+ }
+
return (readresult > 0);
}
virtual int OnRawSocketWrite(int fd, const char* buffer, int count)
{
+ int ocount = count;
+ ServerInstance->Log(DEBUG,"Write event of %d uncompressed bytes: '%s'", count, buffer);
+
if (!count)
- return 0;
+ {
+ ServerInstance->Log(DEBUG,"Nothing to do!");
+ return 1;
+ }
unsigned char compr[count*2];
izip_session* session = &sessions[fd];
- if(session->status != IZIP_WAITFIRST)
+ if(session->status == IZIP_WAITFIRST)
{
- deflateInit(&session->c_stream, Z_DEFAULT_COMPRESSION);
session->status = IZIP_OPEN;
}
+ // Z_BEST_COMPRESSION
+ if (deflateInit(&session->c_stream, Z_BEST_COMPRESSION) != Z_OK)
+ {
+ ServerInstance->Log(DEBUG,"Deflate init failed");
+ }
+
if(session->status != IZIP_OPEN)
- return 1;
+ {
+ ServerInstance->Log(DEBUG,"State not open!");
+ CloseSession(session);
+ return 0;
+ }
session->c_stream.next_in = (Bytef*)buffer;
session->c_stream.next_out = compr;
@@ -182,7 +215,11 @@ class ModuleZLib : public Module
{
session->c_stream.avail_in = session->c_stream.avail_out = 1; /* force small buffers */
if (deflate(&session->c_stream, Z_NO_FLUSH) != Z_OK)
+ {
+ ServerInstance->Log(DEBUG,"Couldnt deflate!");
+ CloseSession(session);
return 0;
+ }
}
/* Finish the stream, still forcing small buffers: */
for (;;)
@@ -192,16 +229,18 @@ class ModuleZLib : public Module
break;
}
- return write(fd, compr, session->c_stream.total_out);
+ ServerInstance->Log(DEBUG,"Write %d compressed bytes", session->c_stream.total_out);
+ unsigned int x = htonl(session->c_stream.total_out);
+ write(fd, &x, sizeof(x));
+ write(fd, compr, session->c_stream.total_out);
+
+ deflateEnd(&session->c_stream);
+
+ return ocount;
}
void CloseSession(izip_session* session)
{
- if(session->status == IZIP_OPEN)
- {
- deflateEnd(&session->c_stream);
- inflateEnd(&session->d_stream);
- }
session->status = IZIP_CLOSED;
}