summaryrefslogtreecommitdiff
path: root/implementation/endpoints/include/udp_client_endpoint_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/endpoints/include/udp_client_endpoint_impl.hpp')
-rw-r--r--implementation/endpoints/include/udp_client_endpoint_impl.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/implementation/endpoints/include/udp_client_endpoint_impl.hpp b/implementation/endpoints/include/udp_client_endpoint_impl.hpp
index 05c63c4..3a3fdcb 100644
--- a/implementation/endpoints/include/udp_client_endpoint_impl.hpp
+++ b/implementation/endpoints/include/udp_client_endpoint_impl.hpp
@@ -47,8 +47,11 @@ public:
bool is_local() const;
void print_status();
bool is_reliable() const;
+
+ void send_cbk(boost::system::error_code const &_error, std::size_t _bytes,
+ const message_buffer_ptr_t &_sent_msg);
private:
- void send_queued();
+ void send_queued(message_buffer_ptr_t _buffer);
void get_configured_times_from_endpoint(
service_t _service, method_t _method,
std::chrono::nanoseconds *_debouncing,
@@ -66,7 +69,7 @@ private:
private:
const boost::asio::ip::address remote_address_;
const std::uint16_t remote_port_;
- const std::uint32_t udp_receive_buffer_size_;
+ int udp_receive_buffer_size_;
std::shared_ptr<tp::tp_reassembler> tp_reassembler_;
};