Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0094f7e4
Commit
0094f7e4
authored
Sep 21, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config parameter changed
parent
9088cbea
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
12 deletions
+6
-12
ndb/include/mgmapi/mgmapi_config_parameters.h
ndb/include/mgmapi/mgmapi_config_parameters.h
+2
-4
ndb/src/common/mgmcommon/IPCConfig.cpp
ndb/src/common/mgmcommon/IPCConfig.cpp
+2
-6
ndb/src/mgmsrv/ConfigInfo.cpp
ndb/src/mgmsrv/ConfigInfo.cpp
+2
-2
No files found.
ndb/include/mgmapi/mgmapi_config_parameters.h
View file @
0094f7e4
...
...
@@ -125,10 +125,8 @@
#define CFG_SCI_HOST1_ID_1 551
#define CFG_SCI_HOST2_ID_0 552
#define CFG_SCI_HOST2_ID_1 553
#define CFG_SCI_HOSTNAME_1 554
#define CFG_SCI_HOSTNAME_2 555
#define CFG_SCI_SEND_LIMIT 556
#define CFG_SCI_BUFFER_MEM 557
#define CFG_SCI_SEND_LIMIT 554
#define CFG_SCI_BUFFER_MEM 555
#define CFG_OSE_PRIO_A_SIZE 602
#define CFG_OSE_PRIO_B_SIZE 603
...
...
ndb/src/common/mgmcommon/IPCConfig.cpp
View file @
0094f7e4
...
...
@@ -398,18 +398,14 @@ IPCConfig::configureTransporters(Uint32 nodeId,
}
case
CONNECTION_TYPE_SCI
:{
SCI_TransporterConfiguration
conf
;
const
char
*
host1
,
*
host2
;
conf
.
localNodeId
=
nodeId
;
conf
.
remoteNodeId
=
remoteNodeId
;
conf
.
checksum
=
checksum
;
conf
.
signalId
=
sendSignalId
;
conf
.
port
=
server_port
;
if
(
iter
.
get
(
CFG_SCI_HOSTNAME_1
,
&
host1
))
break
;
if
(
iter
.
get
(
CFG_SCI_HOSTNAME_2
,
&
host2
))
break
;
conf
.
localHostName
=
(
nodeId
==
nodeId1
?
host1
:
host2
);
conf
.
remoteHostName
=
(
nodeId
==
nodeId1
?
host2
:
host1
);
conf
.
localHostName
=
localHostName
;
conf
.
remoteHostName
=
remoteHostName
;
if
(
iter
.
get
(
CFG_SCI_SEND_LIMIT
,
&
conf
.
sendLimit
))
break
;
if
(
iter
.
get
(
CFG_SCI_BUFFER_MEM
,
&
conf
.
bufferSize
))
break
;
...
...
ndb/src/mgmsrv/ConfigInfo.cpp
View file @
0094f7e4
...
...
@@ -1831,7 +1831,7 @@ const ConfigInfo::ParamInfo ConfigInfo::m_ParamInfo[] = {
STR_VALUE
(
MAX_INT_RNIL
)
},
{
CFG_
SCI
_HOSTNAME_1
,
CFG_
CONNECTION
_HOSTNAME_1
,
"HostName1"
,
"SCI"
,
"Name/IP of computer on one side of the connection"
,
...
...
@@ -1842,7 +1842,7 @@ const ConfigInfo::ParamInfo ConfigInfo::m_ParamInfo[] = {
0
,
0
},
{
CFG_
SCI
_HOSTNAME_2
,
CFG_
CONNECTION
_HOSTNAME_2
,
"HostName2"
,
"SCI"
,
"Name/IP of computer on one side of the connection"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment