committed 1.3 release

This commit is contained in:
Guenter Obiltschnig
2007-05-07 16:46:23 +00:00
parent be44df77fd
commit cf80f255be
36 changed files with 521 additions and 82 deletions

View File

@@ -1,7 +1,7 @@
//
// StreamSocketImpl.cpp
//
// $Id: //poco/Main/Net/src/StreamSocketImpl.cpp#6 $
// $Id: //poco/Main/Net/src/StreamSocketImpl.cpp#7 $
//
// Library: Net
// Package: Sockets
@@ -62,7 +62,7 @@ int StreamSocketImpl::sendBytes(const void* buffer, int length, int flags)
int remaining = length;
while (remaining > 0)
{
int n = SocketImpl::sendBytes(p, length, flags);
int n = SocketImpl::sendBytes(p, remaining, flags);
p += n;
remaining -= n;
}