Disable out-of-order warning (fires too much on some 802.11n networks)

This reverts commit 682bbdfebd.
This commit is contained in:
Keith Winstein
2012-05-30 02:04:32 -04:00
parent ade0aaa3e8
commit 37f78d0e4c
4 changed files with 5 additions and 30 deletions
+2 -7
View File
@@ -402,16 +402,11 @@ void STMClient::main( void )
network->tick();
const Network::NetworkException *exn = network->get_recv_exception();
const Network::NetworkException *exn = network->get_send_exception();
if ( exn ) {
overlays.get_notification_engine().set_network_exception( *exn );
} else {
exn = network->get_send_exception();
if ( exn ) {
overlays.get_notification_engine().set_network_exception( *exn );
} else {
overlays.get_notification_engine().clear_network_exception();
}
overlays.get_notification_engine().clear_network_exception();
}
} catch ( Network::NetworkException e ) {
if ( !network->shutdown_in_progress() ) {