Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ports (0.03 sec)

  1. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            return getSmbTransport(tc, address, port, tc.getConfig().getLocalAddr(), tc.getConfig().getLocalPort(), null, nonPooled);
        }
    
        @Override
        public SmbTransportImpl getSmbTransport(final CIFSContext tc, final Address address, final int port, final boolean nonPooled,
                final boolean forceSigning) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

        @DisplayName("Should default to port 445 when port <= 0")
        void testDefaultPort(int invalidPort) throws Exception {
            // Given: Create a new pool for this test to ensure isolation
            SmbTransportPoolImpl testPool = new SmbTransportPoolImpl();
            when(ctx.getTransportPool()).thenReturn(testPool);
    
            // Connection with invalid port
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/MultiChannelManager.java

                // Create Address wrapper for server address
                jcifs.netbios.UniAddress serverUniAddress = new jcifs.netbios.UniAddress(serverAddress);
    
                // Use default SMB port
                int port = 445;
    
                // Use default local port (0 means system assigns)
                int localPort = 0;
    
                // Get CIFSContext from configuration - this is a simplified approach
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

            if (hostname != null && hostname.contains(".")) {
                // Extract potential cluster name from hostname
                String[] parts = hostname.split("\\.");
                if (parts.length > 1) {
                    return parts[0]; // Use first part as cluster name
                }
            }
            return null;
        }
    
        /**
         * Register for witness notifications for a share
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         */
        boolean isRequireSecureNegotiate();
    
        /**
         * Enable port 139 failover
         *
         * Property {@code jcifs.smb.client.port139.enabled} (boolean, default false)
         *
         * @return whether to failover to legacy transport on port 139
         */
        boolean isPort139FailoverEnabled();
    
        /**
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean forceExtendedSecurity = false;
        /** Whether to negotiate only SMB2 or higher protocols */
        protected boolean smb2OnlyNegotiation = false;
        /** Whether to failover to port 139 if port 445 fails */
        protected boolean port139FailoverEnabled = false;
        /** Whether to use NT SMB operations */
        protected boolean useNTSmbs = true;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtStatus.java

        /** The object was not found */
        int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034;
        /** The object name already exists */
        int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035;
        /** The port is disconnected */
        int NT_STATUS_PORT_DISCONNECTED = 0xC0000037;
        /** The object path is invalid */
        int NT_STATUS_OBJECT_PATH_INVALID = 0xC0000039;
        /** The object path was not found */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtStatus.java

        /** The object was not found */
        int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034;
        /** The object name already exists */
        int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035;
        /** The port is disconnected */
        int NT_STATUS_PORT_DISCONNECTED = 0xC0000037;
        /** The object path is invalid */
        int NT_STATUS_OBJECT_PATH_INVALID = 0xC0000039;
        /** The object path was not found */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        }
                    });
                    runner.build(config);
    
                    final int port = runner.node().settings().getAsInt("http.port", 9200);
                    httpAddress = "http://localhost:" + port;
                    logger.warn("Embedded OpenSearch is running. This configuration is not recommended for production use.");
                    break;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top