summaryrefslogtreecommitdiff
path: root/ndb/src/common/transporter/TransporterRegistry.cpp
diff options
context:
space:
mode:
authorunknown <tomas@poseidon.ndb.mysql.com>2004-12-22 07:20:01 +0100
committerunknown <tomas@poseidon.ndb.mysql.com>2004-12-22 07:20:01 +0100
commit375d7e014b6615b072b0d3564deb5fd94424b198 (patch)
treedc66d91df5c472359c3c56e87e0f009ea8faaf24 /ndb/src/common/transporter/TransporterRegistry.cpp
parentba9ca889123ce3e496965c2ca71851fe957bb32f (diff)
downloadmariadb-git-375d7e014b6615b072b0d3564deb5fd94424b198.tar.gz
added configuration hostnames to SHM config struct
use configured hostnames for SHM transporter setup ndb/include/transporter/TransporterDefinitions.hpp: added configuration hostnames to SHM config struct ndb/src/common/mgmcommon/IPCConfig.cpp: added configuration hostnames to SHM config struct ndb/src/common/transporter/TransporterRegistry.cpp: added configuration hostnames to SHM config struct use configured hostnames for SHM transporter setup
Diffstat (limited to 'ndb/src/common/transporter/TransporterRegistry.cpp')
-rw-r--r--ndb/src/common/transporter/TransporterRegistry.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ndb/src/common/transporter/TransporterRegistry.cpp b/ndb/src/common/transporter/TransporterRegistry.cpp
index be51e9223ba..394c7cd490d 100644
--- a/ndb/src/common/transporter/TransporterRegistry.cpp
+++ b/ndb/src/common/transporter/TransporterRegistry.cpp
@@ -358,8 +358,8 @@ TransporterRegistry::createTransporter(SHM_TransporterConfiguration *config) {
return false;
SHM_Transporter * t = new SHM_Transporter(*this,
- "localhost",
- "localhost",
+ config->localHostName,
+ config->remoteHostName,
config->port,
localNodeId,
config->remoteNodeId,