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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b0df4494
Commit
b0df4494
authored
Jun 15, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.0
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0
parents
fd39c731
c658b990
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
8 deletions
+18
-8
ndb/include/transporter/TransporterDefinitions.hpp
ndb/include/transporter/TransporterDefinitions.hpp
+1
-1
ndb/src/common/mgmcommon/IPCConfig.cpp
ndb/src/common/mgmcommon/IPCConfig.cpp
+2
-4
ndb/src/common/transporter/TransporterRegistry.cpp
ndb/src/common/transporter/TransporterRegistry.cpp
+15
-3
No files found.
ndb/include/transporter/TransporterDefinitions.hpp
View file @
b0df4494
...
...
@@ -56,7 +56,7 @@ const Uint32 MAX_MESSAGE_SIZE = (12+4+4+(4*25)+(3*4)+4*MAX_SECTION_SIZE);
* information specific to a transporter type.
*/
struct
TransporterConfiguration
{
Uint32
port
;
Int32
s_port
;
// negative port number implies dynamic port
const
char
*
remoteHostName
;
const
char
*
localHostName
;
NodeId
remoteNodeId
;
...
...
ndb/src/common/mgmcommon/IPCConfig.cpp
View file @
b0df4494
...
...
@@ -271,14 +271,12 @@ IPCConfig::configureTransporters(Uint32 nodeId,
If we're not using dynamic ports, we don't do anything.
*/
if
((
int
)
server_port
<
0
)
server_port
=
-
server_port
;
conf
.
localNodeId
=
nodeId
;
conf
.
remoteNodeId
=
remoteNodeId
;
conf
.
checksum
=
checksum
;
conf
.
signalId
=
sendSignalId
;
conf
.
port
=
server_port
;
conf
.
s_port
=
server_port
;
conf
.
localHostName
=
localHostName
;
conf
.
remoteHostName
=
remoteHostName
;
...
...
@@ -350,7 +348,7 @@ IPCConfig::configureTransporters(Uint32 nodeId,
if
(
!
iter
.
get
(
CFG_TCP_PROXY
,
&
proxy
))
{
if
(
strlen
(
proxy
)
>
0
&&
nodeId2
==
nodeId
)
{
// TODO handle host:port
conf
.
port
=
atoi
(
proxy
);
conf
.
s_
port
=
atoi
(
proxy
);
}
}
...
...
ndb/src/common/transporter/TransporterRegistry.cpp
View file @
b0df4494
...
...
@@ -290,7 +290,7 @@ TransporterRegistry::createTCPTransporter(TransporterConfiguration *config) {
config
->
tcp
.
maxReceiveSize
,
config
->
localHostName
,
config
->
remoteHostName
,
config
->
port
,
config
->
s_
port
,
config
->
isMgmConnection
,
localNodeId
,
config
->
remoteNodeId
,
...
...
@@ -392,7 +392,7 @@ TransporterRegistry::createSCITransporter(TransporterConfiguration *config) {
SCI_Transporter
*
t
=
new
SCI_Transporter
(
*
this
,
config
->
localHostName
,
config
->
remoteHostName
,
config
->
port
,
config
->
s_
port
,
config
->
isMgmConnection
,
config
->
sci
.
sendLimit
,
config
->
sci
.
bufferSize
,
...
...
@@ -458,7 +458,7 @@ TransporterRegistry::createSHMTransporter(TransporterConfiguration *config) {
SHM_Transporter
*
t
=
new
SHM_Transporter
(
*
this
,
config
->
localHostName
,
config
->
remoteHostName
,
config
->
port
,
config
->
s_
port
,
config
->
isMgmConnection
,
localNodeId
,
config
->
remoteNodeId
,
...
...
@@ -1170,7 +1170,10 @@ TransporterRegistry::do_connect(NodeId node_id)
case
DISCONNECTING
:
break
;
}
DBUG_ENTER
(
"TransporterRegistry::do_connect"
);
DBUG_PRINT
(
"info"
,(
"performStates[%d]=CONNECTING"
,
node_id
));
curr_state
=
CONNECTING
;
DBUG_VOID_RETURN
;
}
void
TransporterRegistry
::
do_disconnect
(
NodeId
node_id
)
...
...
@@ -1186,21 +1189,30 @@ TransporterRegistry::do_disconnect(NodeId node_id)
case
DISCONNECTING
:
return
;
}
DBUG_ENTER
(
"TransporterRegistry::do_disconnect"
);
DBUG_PRINT
(
"info"
,(
"performStates[%d]=DISCONNECTING"
,
node_id
));
curr_state
=
DISCONNECTING
;
DBUG_VOID_RETURN
;
}
void
TransporterRegistry
::
report_connect
(
NodeId
node_id
)
{
DBUG_ENTER
(
"TransporterRegistry::report_connect"
);
DBUG_PRINT
(
"info"
,(
"performStates[%d]=CONNECTED"
,
node_id
));
performStates
[
node_id
]
=
CONNECTED
;
reportConnect
(
callbackObj
,
node_id
);
DBUG_VOID_RETURN
;
}
void
TransporterRegistry
::
report_disconnect
(
NodeId
node_id
,
int
errnum
)
{
DBUG_ENTER
(
"TransporterRegistry::report_connect"
);
DBUG_PRINT
(
"info"
,(
"performStates[%d]=DISCONNECTED"
,
node_id
));
performStates
[
node_id
]
=
DISCONNECTED
;
reportDisconnect
(
callbackObj
,
node_id
,
errnum
);
DBUG_VOID_RETURN
;
}
void
...
...
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