Restore an accidentally-commented-out line that was preventing NTP from restarting after encountering an error.

This commit is contained in:
Eric Frias 2014-09-14 19:53:08 -04:00
parent 3ee5f756fb
commit b5414af3ce

View file

@ -102,7 +102,7 @@ namespace fc
uint64_t* recv_buf = (uint64_t*)receive_buffer.get(); uint64_t* recv_buf = (uint64_t*)receive_buffer.get();
//outer while to restart read-loop if exception is thrown while waiting to receive on socket. //outer while to restart read-loop if exception is thrown while waiting to receive on socket.
//while( !_read_loop_done.canceled() ) while( !_read_loop_done.canceled() )
{ {
// if you start the read while loop here, the recieve_from call will throw "invalid argument" on win32, // if you start the read while loop here, the recieve_from call will throw "invalid argument" on win32,
// so instead we start the loop after making our first request // so instead we start the loop after making our first request
@ -144,7 +144,7 @@ namespace fc
} // try } // try
catch (fc::canceled_exception) catch (fc::canceled_exception)
{ {
throw; throw;
} }
catch (...) catch (...)
{ {