From f9a817bcdf593e4a5fbb54ac2f62c448b7cb1631 Mon Sep 17 00:00:00 2001 From: Hartmut Reuter Date: Wed, 28 Mar 2001 07:51:25 +0000 Subject: [PATCH] ubik-clone-support-20010212 ubik library support for readonly clones --- src/ubik/beacon.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/ubik/beacon.c b/src/ubik/beacon.c index 59fb4c8d6..bb11cbdf9 100644 --- a/src/ubik/beacon.c +++ b/src/ubik/beacon.c @@ -211,12 +211,16 @@ ubeacon_InitServerListCommon(ame, info, clones, aservers) } ++nServers; } - ts->vote_rxcid = rx_NewConnection(servAddr, ubik_callPortal, - VOTE_SERVICE_ID, - ubikSecClass, ubikSecIndex); /* for vote reqs */ - ts->disk_rxcid = rx_NewConnection(servAddr, ubik_callPortal, - DISK_SERVICE_ID, ubikSecClass, - ubikSecIndex); /* for disk reqs */ + /* for vote reqs */ + ts->vote_rxcid = rx_NewConnection(info->hostAddr[i].sin_addr.s_addr, + ubik_callPortal, + VOTE_SERVICE_ID, + ubikSecClass, ubikSecIndex); + /* for disk reqs */ + ts->disk_rxcid = rx_NewConnection(info->hostAddr[i].sin_addr.s_addr, + ubik_callPortal, + DISK_SERVICE_ID, ubikSecClass, + ubikSecIndex); ts->up = 1; } } else { -- 2.39.5