Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for IPC (0.12 sec)

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

                if (netbiosName != null && tcax.path.endsWith("\\IPC$")) {
                    /* Some pipes may require that the hostname in the tree connect
                     * be the netbios name. So if we have the netbios server name
                     * from the NTLMSSP type 2 message, and the share is IPC$, we
                     * assert that the tree connect path uses the netbios hostname.
                     */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ReadWriteTest.java

            Assume.assumeNotNull(testFifoPipe);
            return "smb://" + getTestServer() + "/IPC$/" + testFifoPipe;
        }
    
    
        private String getTransactPipeUrl () {
            String testTransactPipe = getProperties().get(TestProperties.TEST_TRANSACT_PIPE);
            Assume.assumeNotNull(testTransactPipe);
            return "smb://" + getTestServer() + "/IPC$/" + testTransactPipe;
        }
    
    
        private String getCallPipeUrl () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        DfsReferral getDfsReferrals(NtlmPasswordAuthentication auth,
                    String path,
                    int rn) throws SmbException {
            SmbTree ipc = getSmbSession( auth ).getSmbTree( "IPC$", null );
            Trans2GetDfsReferralResponse resp = new Trans2GetDfsReferralResponse();
            ipc.send( new Trans2GetDfsReferral( path ), resp );
    
            if (resp.numReferrals == 0) {
                return null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

         * @see jcifs.SmbResourceLocator#isIPC()
         */
        @Override
        public boolean isIPC () {
            String shr = this.getShare();
            if ( shr == null || "IPC$".equals(getShare()) ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("Share is IPC " + this.share);
                }
                return true;
            }
            return false;
        }
    
    
        /**
         * @param t
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeImpl.java

            }
    
            if ( transport.getContext().getConfig().isIpcSigningEnforced() && ( "IPC$".equals(this.getShare()) || "IPC".equals(rsvc) )
                    && !sess.getCredentials().isAnonymous() && sess.getDigest() == null ) {
                throw new SmbException("IPC signing is enforced, but no signing is available");
            }
    
            this.service = rsvc;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/FileLocationTest.java

            try ( SmbResource r = new SmbFile("smb://0.0.0.0/IPC$/", getContext()) ) {
                assert ( r.isHidden() );
            }
        }
    
    
        @Test
        public void testSetAddress () throws MalformedURLException, CIFSException {
            try ( SmbResource r = new SmbFile("smb://TESTING/IPC$/?address=1.2.3.4", getContext()) ) {
                Address a = r.getLocator().getAddress();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 13:16:07 GMT 2020
    - 23K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Dfs.java

                    String path,
                    NtlmPasswordAuthentication auth) throws SmbAuthException {
            DfsReferral dr = null;
            long now = System.currentTimeMillis();
    
            if (DISABLED || root.equals("IPC$")) {
                return null;
            }
            /* domains that can contain DFS points to maps of roots for each
             */
            HashMap domains = getTrustedDomains(auth);
            if (domains != null) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/SessionTest.java

            CIFSContext cifsContext = getNewContext().withCredentials(new NtlmPasswordAuthenticator("wrong", "wrong", "wrong"));
            try ( SmbFile f = new SmbFile("smb://" + getTestServer() + "/IPC$/test", cifsContext); ) {
                f.connect();
                assertFalse(true);
            }
            catch ( SmbAuthException e ) {
                // ignore
            }
    
            assertFalse(cifsContext.close());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/Configuration.java

         */
        String getNetbiosHostname ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.logonShare</tt>
         * 
         * @return share to connect to during authentication, if unset connect to IPC$
         */
        String getLogonShare ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.domain</tt>
         * 
         * @return default credentials, domain name
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/DfsImpl.java

        }
    
    
        private DfsReferralData resolve ( CIFSContext tf, String domain, String root, String path, int depthLimit ) throws SmbAuthException {
    
            if ( tf.getConfig().isDfsDisabled() || root == null || root.equals("IPC$") || depthLimit <= 0 ) {
                return null;
            }
    
            if ( domain == null ) {
                return null;
            }
    
            domain = domain.toLowerCase();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
Back to top