summaryrefslogtreecommitdiff
path: root/ndb/include
diff options
context:
space:
mode:
authorunknown <jonas@perch.ndb.mysql.com>2006-04-26 14:53:43 +0200
committerunknown <jonas@perch.ndb.mysql.com>2006-04-26 14:53:43 +0200
commit96b42ea0ed715242fb3d87812f174630f8ec20d2 (patch)
treed9e86c2ba4bdd73fa516928cc48bab70ee377c4a /ndb/include
parentabc0d700bbe67fe52ff6d47d1d341e329a90d863 (diff)
downloadmariadb-git-96b42ea0ed715242fb3d87812f174630f8ec20d2.tar.gz
ndb - bug#17150
ndb_mgmd limited no of api nodes, by restricting no of mgmsessions (these are used for dynamic port allocation) ndb/include/util/SocketServer.hpp: Increase default max session to ~0 ndb/src/common/util/SocketServer.cpp: Increase default max session to ~0
Diffstat (limited to 'ndb/include')
-rw-r--r--ndb/include/util/SocketServer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/include/util/SocketServer.hpp b/ndb/include/util/SocketServer.hpp
index ee2dd31c41f..02a0a6b5d92 100644
--- a/ndb/include/util/SocketServer.hpp
+++ b/ndb/include/util/SocketServer.hpp
@@ -74,7 +74,7 @@ public:
/**
* Constructor / Destructor
*/
- SocketServer(int maxSessions = 32);
+ SocketServer(unsigned maxSessions = ~(unsigned)0);
~SocketServer();
/**