Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for Strand (0.24 sec)

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

                        SmbTransportInternal trans = this.exclusiveTransport;
                        try ( SmbSessionInternal smbSession = trans.getSmbSession(this.ctx, host, targetDomain).unwrap(SmbSessionInternal.class);
                              SmbTreeImpl uct = smbSession.getSmbTree(share, null).unwrap(SmbTreeImpl.class);
                              SmbTreeImpl ct = connectTree(loc, host, share, trans, uct, dr) ) {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                log.debug("Scheduling transport connection for removal " + trans + " (" + System.identityHashCode(trans) + ")");
            }
            this.toRemove.add((SmbTransportImpl) trans);
        }
    
    
        private void cleanup () {
            synchronized ( this.connections ) {
                SmbTransportImpl trans;
                while ( ( trans = this.toRemove.poll() ) != null ) {
    
                    if ( log.isDebugEnabled() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/OplockTests.java

            CIFSContext c = getContext();
            c = withTestNTLMCredentials(c);
            try ( SmbTransportInternal trans = c.getTransportPool().getSmbTransport(c, getTestServer(), 0, false, true)
                    .unwrap(SmbTransportInternal.class);
                  SmbSession sess = trans.unwrap(SmbTransportInternal.class).getSmbSession(c, getTestServer(), null);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.internal.smb1.trans.nt;
    
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.trans.SmbComTransactionResponse;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java

     */
    
    package jcifs.internal.smb1.trans2;
    
    
    import jcifs.Configuration;
    import jcifs.internal.dfs.DfsReferralResponseBuffer;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.smb1.trans.SmbComTransactionResponse;
    
    
    /**
     * 
     */
    public class Trans2GetDfsReferralResponse extends SmbComTransactionResponse {
    
        /**
         * 
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
                throw se;
            }
        }
    
    
        /**
         * @param trans
         * @param sess
         * @throws CIFSException
         * 
         */
        private void validateNegotiation ( SmbTransportImpl trans, SmbSessionImpl sess ) throws CIFSException {
            if ( !trans.isSMB2() || trans.getDigest() == null || !sess.getConfig().isRequireSecureNegotiate() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

    package jcifs.internal.smb1.trans2;
    
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.fscc.FileBothDirectoryInfo;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.smb1.trans.SmbComTransactionResponse;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     */
    public class Trans2FindFirst2Response extends SmbComTransactionResponse {
    
        // information levels
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbTransportPool.java

                boolean exclusive, boolean forceSigning );
    
    
        /**
         * 
         * @param trans
         */
        void removeTransport ( SmbTransport trans );
    
    
        /**
         * Closes the pool and all connections in it
         * 
         * @return whether any transport was still in use
         * 
         * @throws CIFSException
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 09:02:44 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.internal.smb1.trans;
    
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    
    
    /**
     * 
     */
    public class TransCallNamedPipeResponse extends SmbComTransactionResponse {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

     */
    
    package jcifs.internal.smb1.net;
    
    
    import java.io.UnsupportedEncodingException;
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * 
     * 
     */
    public class NetShareEnum extends SmbComTransaction {
    
        private static final String DESCR = "WrLeh\u0000B13BWz\u0000";
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.9K bytes
    - Viewed (0)
Back to top