Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SmbTransportImpl (0.08 sec)

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

        private final List<SmbTransportImpl> connections = new LinkedList<>();
        private final List<SmbTransportImpl> nonPooledConnections = new LinkedList<>();
        private final ConcurrentLinkedQueue<SmbTransportImpl> toRemove = new ConcurrentLinkedQueue<>();
        final Map<String, Integer> failCounts = new ConcurrentHashMap<>();
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

         */
        public boolean isPossiblyDfs () throws SmbException {
            if ( this.connectionState.get() == 2 ) {
                // we are connected, so we know
                return isDfs();
            }
            try ( SmbTransportImpl transport = this.session.getTransport() ) {
                return transport.getNegotiateResponse().isDFSSupported();
            }
        }
    
    
        /**
         * @return the session this tree is connected in
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

    
        synchronized void disconnect ( boolean inError ) {
            try ( SmbSessionImpl session = getSession() ) {
                if ( session == null ) {
                    return;
                }
                try ( SmbTransportImpl transport = session.getTransport() ) {
                    synchronized ( transport ) {
                        SmbTreeImpl t = getTreeInternal();
                        if ( t != null ) {
                            try {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DfsImpl.java

                return null;
            SmbTransportImpl transport = getReferralTransport(tf, getDcReferrals(tf, domain));
            if ( transport == null && log.isDebugEnabled() ) {
                log.debug(String.format("Failed to connect to domain controller for %s", domain));
            }
            return transport;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbEnumerationUtil.java

            try ( SmbTreeHandleImpl th = treeConn.connectHost(locator, locator.getServerWithDfs());
                  SmbSessionImpl session = th.getSession();
                  SmbTransportImpl transport = session.getTransport() ) {
                try {
                    entries = doMsrpcShareEnum(tc, locator, transport.getRemoteAddress());
                }
                catch ( IOException ioe ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
Back to top