Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for capabilities (0.43 sec)

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

        static final int DEFAULT_CAPABILITIES =
                    ( USE_NTSMBS ? CAP_NT_SMBS : 0 ) |
                    ( USE_NTSTATUS ? CAP_STATUS32 : 0 ) |
                    ( USE_UNICODE ? CAP_UNICODE : 0 ) |
                    CAP_DFS;
        static final int FLAGS2 = Config.getInt( "jcifs.smb1.smb.client.flags2", DEFAULT_FLAGS2 );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

                        | ( this.useUnicode || this.forceUnicode ? SmbConstants.FLAGS2_UNICODE : 0 );
            }
    
            if ( this.capabilities == 0 ) {
                this.capabilities = ( this.useNTSmbs ? SmbConstants.CAP_NT_SMBS : 0 ) | ( this.useNtStatus ? SmbConstants.CAP_STATUS32 : 0 )
                        | ( this.useExtendedSecurity ? SmbConstants.CAP_EXTENDED_SECURITY : 0 )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb1/https/Handler.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.https;
    
    /**
     * A <code>URLStreamHandler</code> used to provide NTLM authentication
     * capabilities to the default HTTPS handler.  This acts as a wrapper,
     * handling authentication and passing control to the underlying
     * stream handler.
     */
    public class Handler extends jcifs.smb1.http.Handler {
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            return this.selectedPreauthHash;
        }
    
    
        /**
         * @return the server returned capabilities
         */
        public final int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the common/negotiated capabilieis
         */
        public final int getCommonCapabilities () {
            return this.commonCapabilities;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            snd_buf_size = Math.min( snd_buf_size, server.maxBufferSize );
            capabilities &= server.capabilities;
            if ((server.capabilities & CAP_EXTENDED_SECURITY) == CAP_EXTENDED_SECURITY)
                capabilities |= CAP_EXTENDED_SECURITY; // & doesn't copy high bit
    
            if ((capabilities & ServerMessageBlock.CAP_UNICODE) == 0) {
                // server doesn't want unicode
    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)
  6. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java

     *
     */
    public class ValidateNegotiateInfoResponse implements Decodable {
    
        private int capabilities;
        private byte[] serverGuid = new byte[16];
        private int securityMode;
        private int dialect;
    
    
        /**
         * @return the capabilities
         */
        public int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the serverGuid
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/PropertyConfiguration.java

            this.useNTSmbs = Config.getBoolean(p, "jcifs.smb.client.useNTSmbs", true);
    
            this.flags2 = Config.getInt(p, "jcifs.smb.client.flags2", 0);
    
            this.capabilities = Config.getInt(p, "jcifs.smb.client.capabilities", 0);
    
            this.sessionLimit = Config.getInt(p, "jcifs.smb.client.ssnLimit", SmbConstants.DEFAULT_SSN_LIMIT);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

        /**
         * 
         * 
         * @return virtual circuit number to use
         */
        int getVcNumber ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.capabilities</tt> (int)
         * 
         * @return custom capabilities
         */
        int getCapabilities ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.smb.client.flags2</tt> (int)
         * 
         * @return custom flags2
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbUnsupportedOperationException.java

        private static final long serialVersionUID = -5576981906065713710L;
    
    
        /**
         * 
         */
        public SmbUnsupportedOperationException () {
            super("Operation is not supported with the negotiated capabilities");
        }
    
    
        /**
         * 
         * @param msg
         */
        public SmbUnsupportedOperationException ( String msg ) {
            super(msg);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/https/Handler.java

     */
    
    package jcifs.https;
    
    
    import jcifs.CIFSContext;
    import jcifs.http.NtlmHttpURLConnection;
    
    
    /**
     * A <code>URLStreamHandler</code> used to provide NTLM authentication
     * capabilities to the default HTTPS handler. This acts as a wrapper,
     * handling authentication and passing control to the underlying
     * stream handler.
     * 
     * @deprecated {@link NtlmHttpURLConnection} is broken by design.
     */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
Back to top