rbulter commented on a change in pull request #279:
URL: https://github.com/apache/celix/pull/279#discussion_r544349458
##########
File path: bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_topic_sender.c
##########
@@ -343,18 +335,25 @@ const char
*pubsub_tcpTopicSender_topic(pubsub_tcp_topic_sender_t *sender) {
}
const char *pubsub_tcpTopicSender_url(pubsub_tcp_topic_sender_t *sender) {
- return sender->url;
+ if (sender->isPassive) {
+ return pubsub_tcpHandler_get_connection_url(sender->socketHandler);
+ } else {
+ return sender->url;
+ }
}
-
bool pubsub_tcpTopicSender_isStatic(pubsub_tcp_topic_sender_t *sender) {
return sender->isStatic;
}
-void pubsub_tcpTopicSender_connectTo(pubsub_tcp_topic_sender_t *sender, const
celix_properties_t *endpoint) {
+bool pubsub_tcpTopicSender_isPassive(pubsub_tcp_topic_sender_t *sender) {
+ return sender->isPassive;
+}
+
+void pubsub_tcpTopicSender_connectTo(pubsub_tcp_topic_sender_t *sender
__attribute__((unused)), const celix_properties_t *endpoint
__attribute__((unused))) {
Review comment:
This also applies to ZMQ (v1/v2) please fix this aswell
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]