From d29d85096832a8f197e9f451e4a94cdc292f1380 Mon Sep 17 00:00:00 2001 From: rex-schilasky <49162693+rex-schilasky@users.noreply.github.com> Date: Fri, 3 May 2024 10:51:01 +0200 Subject: [PATCH] cosmetic .. --- ecal/core/include/ecal/ecal_publisher_config.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ecal/core/include/ecal/ecal_publisher_config.h b/ecal/core/include/ecal/ecal_publisher_config.h index a1ee522..d77b030 100644 --- a/ecal/core/include/ecal/ecal_publisher_config.h +++ b/ecal/core/include/ecal/ecal_publisher_config.h @@ -35,7 +35,7 @@ namespace eCAL TLayer::eSendMode send_mode = TLayer::smode_auto; //!< shm layer send mode (default auto) bool zero_copy_mode = false; //!< enable zero copy shared memory transport mode int acknowledge_timeout_ms = 0; /*!< force connected subscribers to send acknowledge event after processing the message - the publisher send call is blocked on this event with this timeout (0 == no handshake) */ + the publisher send call is blocked on this event with this timeout (0 == no handshake) */ size_t memfile_min_size_bytes = 4096; //!< default memory file size for new publisher size_t memfile_reserve_percent = 50; //!< dynamic file size reserve before recreating memory file if topic size changes size_t memfile_buffer_count = 1; //!< maximum number of used buffers (needs to be greater than 1, default = 1) @@ -49,7 +49,7 @@ namespace eCAL struct ECAL_API TCPPubConfig { - TLayer::eSendMode send_mode = TLayer::smode_off; //!< tcp layer send mode (default off) + TLayer::eSendMode send_mode = TLayer::smode_off; //!< tcp layer send mode (default off) }; struct ECAL_API PubConfig @@ -60,7 +60,7 @@ namespace eCAL UDPPubConfig udp; TCPPubConfig tcp; - bool share_topic_type = true; - bool share_topic_description = true; + bool share_topic_type = true; //!< share topic type via registration + bool share_topic_description = true; //!< share topic description via registration }; }