*** empty log message ***

This commit is contained in:
Roger Hughston 2007-03-14 21:01:57 +00:00
parent 90cb3e6fc8
commit afd9114eea

View File

@ -60,7 +60,7 @@ public:
if(!sck.ErrorIs_WouldBlocking(gotbytes) )
{
answer = -3; // hard error ?
printf("buffered_datagram_reader:ReadPump socket read error -- %d, %s\n", GETERROR(), sck.getPeerName().get_ip_port().c_str());
printf("buffered_datagram_reader:ReadPump socket read error -- %d, %s\n", GETERROR(), sck.GetPeerName().get_ip_port().c_str());
}
else
{
@ -76,13 +76,13 @@ public:
else // 0 mean other end disconect arggggg
{
answer = -1;
printf("buffered_datagram_reader:ReadPump other end of socket closed -- %s\n", sck.getPeerName().get_ip_port().c_str());
printf("buffered_datagram_reader:ReadPump other end of socket closed -- %s\n", sck.GetPeerName().get_ip_port().c_str());
}
}
else
{
answer = -2;
printf("buffered_datagram_reader:ReadPump Yeep! buffer has no room to read to -- %s\nBufferAvaiable = %d, AmountBuffered = %d, BufferSize = %d\n", sck.getPeerName().get_ip_port().c_str(), readsize, AmountBuffered(), GetBufferSize());
printf("buffered_datagram_reader:ReadPump Yeep! buffer has no room to read to -- %s\nBufferAvaiable = %d, AmountBuffered = %d, BufferSize = %d\n", sck.GetPeerName().get_ip_port().c_str(), readsize, AmountBuffered(), GetBufferSize());
}
return answer;