| 724 | } |
| 725 | |
| 726 | void onReadError(const boost::system::error_code& error) { |
| 727 | TraceEvent(SevWarn, "N2_UDPReadError", id) |
| 728 | .suppressFor(1.0) |
| 729 | .detail("ErrorCode", error.value()) |
| 730 | .detail("Message", error.message()); |
| 731 | closeSocket(); |
| 732 | } |
| 733 | void onWriteError(const boost::system::error_code& error) { |
| 734 | TraceEvent(SevWarn, "N2_UDPWriteError", id) |
| 735 | .suppressFor(1.0) |
nothing calls this directly
no test coverage detected