From 6550d584a2778f8f7815042b1f86df54bde772f6 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 20 Oct 2021 14:10:59 -0400 Subject: [PATCH] Give scan callers a context for tracking local interface When trying to leverage autodetect strategy for net config, will need to keep track of receiving interface. For now only use ipv6 for this capability, as getting the incoming nic for ipv4 would be more work. --- confluent_osdeploy/common/opt/confluent/bin/apiclient | 2 ++ 1 file changed, 2 insertions(+) diff --git a/confluent_osdeploy/common/opt/confluent/bin/apiclient b/confluent_osdeploy/common/opt/confluent/bin/apiclient index 7cdda737..3b291bb2 100644 --- a/confluent_osdeploy/common/opt/confluent/bin/apiclient +++ b/confluent_osdeploy/common/opt/confluent/bin/apiclient @@ -111,6 +111,8 @@ def scan_confluents(): current['isdefault'] = True elif line.startswith(b'MGTIFACE: '): current['mgtiface'] = line.replace(b'MGTIFACE: ', b'').strip().decode('utf8') + if len(peer) > 2: + current['myidx'] = peer[-1] srvs[peer[0]] = current srvlist.append(peer[0]) r = select.select((s4, s6), (), (), 2)