Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for IPC (0.03 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                }
    
                tree.treeConnect(null, null);
            } catch (final SmbAuthException sae) {
                NtlmPasswordAuthentication a;
                SmbSession ssn;
    
                if (share == null) { // IPC$ - try "anonymous" credentials
                    ssn = trans.getSmbSession(NtlmPasswordAuthentication.NULL);
                    tree = ssn.getSmbTree(null, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Dfs.java

                throws SmbAuthException {
            DfsReferral dr = null;
            final long now = System.currentTimeMillis();
    
            if (DISABLED || root.equals("IPC$")) {
                return null;
            }
            /* domains that can contain DFS points to maps of roots for each
             */
            final HashMap domains = getTrustedDomains(auth);
            if (domains != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
    
            try (SmbSessionImpl sess = getSmbSession(ctx, targetHost, targetDomain);
                    SmbTransportImpl transport = sess.getTransport();
                    SmbTreeImpl ipc = sess.getSmbTree("IPC$", null)) {
    
                final DfsReferralRequestBuffer dfsReq = new DfsReferralRequestBuffer(path, 3);
                DfsReferralResponseBuffer dfsResp;
                if (isSMB2()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         */
        String getNetbiosHostname();
    
        /**
         *
         * Property {@code jcifs.smb.client.logonShare}
         *
         * @return share to connect to during authentication, if unset connect to IPC$
         */
        String getLogonShare();
    
        /**
         *
         *
         * Property {@code jcifs.smb.client.domain}
         *
         * @return default credentials, domain name
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java

            assertEquals(testSharename, msrpcShareGetInfo.sharename);
        }
    
        @ParameterizedTest
        @NullAndEmptySource
        @ValueSource(strings = { "", "share1", "\\\\server\\share", "C$", "ADMIN$", "IPC$" })
        void testConstructorWithDifferentSharenames(String sharename) {
            // Test with various sharename values
            MsrpcShareGetInfo shareGetInfo = new MsrpcShareGetInfo(testServer, sharename);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            assertFalse(signingPreferred, "Should delegate signing preferred setting");
            assertTrue(signingEnforced, "Should delegate signing enforced setting");
            assertTrue(ipcSigningEnforced, "Should delegate IPC signing enforced setting");
            assertTrue(firstExtendedSecurityCall, "First call should return true");
            assertFalse(secondExtendedSecurityCall, "Second call should return false");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean signingPreferred = false;
        /** Whether SMB signing is enforced (required) */
        protected boolean signingEnforced = false;
        /** Whether to enforce signing for IPC connections */
        protected boolean ipcSigningEnforced = true;
        /** Whether SMB3 encryption is enabled */
        protected boolean encryptionEnabled = false;
        /** Whether SMB3 compression is enabled */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/DfsImpl.java

                throws SmbAuthException {
    
            if (tf.getConfig().isDfsDisabled() || root == null || root.equals("IPC$") || depthLimit <= 0) {
                return null;
            }
    
            if (domain == null) {
                return null;
            }
    
            domain = domain.toLowerCase();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

        /**
         * Tests to see if the file this SmbResource represents is marked as
         * hidden. This method will also return true for shares with names that
         * end with '$' such as <code>IPC$</code> or <code>C$</code>.
         *
         * @return <code>true</code> if the <code>SmbResource</code> is marked as being hidden
         * @throws CIFSException if an error occurs accessing the resource
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
  10. src/main/java/jcifs/smb/SmbFile.java

         * <li>all servers registered as members of a NetBIOS workgroup if this
         * resource refers to a workgroup in a <code>smb://workgroup/</code> URL,
         * <li>all browseable shares of a server including printers, IPC
         * services, or disk volumes if this resource is a server URL in the form
         * <code>smb://server/</code>,
         * <li>or <code>null</code> if the resource cannot be resolved.
         * </ul>
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top