better error message when datagram too large

This commit is contained in:
David Rose 2005-02-23 22:07:04 +00:00
parent 5181b69662
commit f8000948e5

View File

@ -25,6 +25,7 @@
#include "config_net.h" #include "config_net.h"
#include "config_express.h" // for collect_tcp #include "config_express.h" // for collect_tcp
#include "clockObject.h" #include "clockObject.h"
#include "notify.h"
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
@ -392,6 +393,14 @@ send_datagram(const NetDatagram &datagram) {
} }
// We might queue up TCP packets for later sending. // We might queue up TCP packets for later sending.
if (datagram.get_length() >= 0x10000) {
net_cat.error()
<< "Attempt to send TCP datagram of " << datagram.get_length()
<< " bytes--too long!\n";
nassert_raise("Datagram too long");
return false;
}
DatagramTCPHeader header(datagram); DatagramTCPHeader header(datagram);
PR_Lock(_write_mutex); PR_Lock(_write_mutex);