mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 01:44:06 -04:00
*** empty log message ***
This commit is contained in:
parent
90cb3e6fc8
commit
afd9114eea
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user