- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ssnLimit (0.13 sec)
-
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** List of active connections */ LinkedList CONNECTIONS = new LinkedList(); /** Session limit */ int SSN_LIMIT = Config.getInt("jcifs.smb1.smb.client.ssnLimit", DEFAULT_SSN_LIMIT); /** Socket timeout in milliseconds */ int SO_TIMEOUT = Config.getInt("jcifs.smb1.smb.client.soTimeout", DEFAULT_SO_TIMEOUT); /** Connection timeout in milliseconds */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * * Property {@code jcifs.smb.client.flags2} (int) * * @return custom flags2 */ int getFlags2(); /** * * Property {@code jcifs.smb.client.ssnLimit} (int, 250) * * @return maximum number of sessions on a single connection */ int getSessionLimit(); /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
synchronized (CONNECTIONS) { if (SSN_LIMIT != 1) { final ListIterator iter = CONNECTIONS.listIterator(); while (iter.hasNext()) { conn = (SmbTransport) iter.next(); if (conn.matches(address, port, localAddr, localPort, hostName) && (SSN_LIMIT == 0 || conn.sessions.size() < SSN_LIMIT)) { return conn;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0)