Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shouldForceSigning (0.18 sec)

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

     *
     */
    public interface SmbResourceLocatorInternal extends SmbResourceLocator {
    
        /**
         * @return whether to enforce the use of signing on connection to this resource
         */
        boolean shouldForceSigning ();
    
    
        /**
         * @param other
         * @return whether the paths share a common root
         * @throws CIFSException
         */
        boolean overlaps ( SmbResourceLocator other ) throws CIFSException;
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

        public URL getURL () {
            return this.url;
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.smb.SmbResourceLocatorInternal#shouldForceSigning()
         */
        @Override
        public boolean shouldForceSigning () {
            return this.ctx.getConfig().isIpcSigningEnforced() && !this.ctx.getCredentials().isAnonymous() && isIPC();
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

                        }
                        this.exclusiveTransport = this.ctx.getTransportPool()
                                .getSmbTransport(this.ctx, host, loc.getPort(), true, loc.shouldForceSigning()).unwrap(SmbTransportInternal.class);
                        SmbTransportInternal trans = this.exclusiveTransport;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top