summaryrefslogtreecommitdiff
path: root/src/cluster.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cluster.c')
-rw-r--r--src/cluster.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cluster.c b/src/cluster.c
index 45e7bf92a..499daf687 100644
--- a/src/cluster.c
+++ b/src/cluster.c
@@ -753,6 +753,14 @@ void clusterUpdateMyselfFlags(void) {
}
+/* We want to take myself->port/cport/pport in sync with the
+* cluster-announce-port/cluster-announce-bus-port/cluster-announce-tls-port option.
+* The option can be set at runtime via CONFIG SET. */
+void clusterUpdateMyselfAnnouncedPorts(void) {
+ if (!myself) return;
+ deriveAnnouncedPorts(&myself->port,&myself->pport,&myself->cport);
+}
+
/* We want to take myself->ip in sync with the cluster-announce-ip option.
* The option can be set at runtime via CONFIG SET. */
void clusterUpdateMyselfIp(void) {