Network performance optimizations (#771)

This commit is contained in:
Cameron Gutman
2023-01-16 17:17:04 -06:00
committed by GitHub
parent 42f6634e85
commit fa14b6ead7
7 changed files with 549 additions and 2 deletions

View File

@@ -153,6 +153,18 @@ bool restart() {
return false;
}
bool send_batch(batched_send_info_t &send_info) {
// Fall back to unbatched send calls
return false;
}
std::unique_ptr<deinit_t> enable_socket_qos(uintptr_t native_socket, boost::asio::ip::address &address, uint16_t port, qos_data_type_e data_type) {
// Unimplemented
//
// NB: When implementing, remember to consider that some routes can drop DSCP-tagged packets completely!
return nullptr;
}
} // namespace platf
namespace dyn {