Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for cap (0.16 sec)

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

        static final int CAP_NONE = 0x0000;
        static final int CAP_RAW_MODE = 0x0001;
        static final int CAP_MPX_MODE = 0x0002;
        static final int CAP_UNICODE = 0x0004;
        static final int CAP_LARGE_FILES = 0x0008;
        static final int CAP_NT_SMBS = 0x0010;
        static final int CAP_RPC_REMOTE_APIS = 0x0020;
        static final int CAP_STATUS32 = 0x0040;
        static final int CAP_LEVEL_II_OPLOCKS = 0x0080;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

        @Override
        public boolean haveCapabilitiy ( int cap ) {
            return ( this.capabilities & cap ) == cap;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#isDFSSupported()
         */
        @Override
        public boolean isDFSSupported () {
            return !getConfig().isDfsDisabled() && haveCapabilitiy(SmbConstants.CAP_DFS);
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int CAP_NONE             = 0x0000;
        static final int CAP_RAW_MODE         = 0x0001;
        static final int CAP_MPX_MODE         = 0x0002;
        static final int CAP_UNICODE          = 0x0004;
        static final int CAP_LARGE_FILES      = 0x0008;
        static final int CAP_NT_SMBS          = 0x0010;
        static final int CAP_RPC_REMOTE_APIS  = 0x0020;
        static final int CAP_STATUS32         = 0x0040;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/Smb2Constants.java

        /**
         * 
         */
        public static final int SMB2_GLOBAL_CAP_DFS = 0x1;
    
        /**
         * 
         */
        public static final int SMB2_GLOBAL_CAP_LEASING = 0x2;
    
        /**
         * 
         */
        public static final int SMB2_GLOBAL_CAP_LARGE_MTU = 0x4;
    
        /**
         * 
         */
        public static final int SMB2_GLOBAL_CAP_MULTI_CHANNEL = 0x8;
    
        /**
         * 
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFileOutputStream.java

            this.useNTSmbs = th.hasCapability(SmbConstants.CAP_NT_SMBS);
            if ( !this.useNTSmbs ) {
                log.debug("No support for NT SMBs");
            }
    
            // there seems to be a bug with some servers that causes corruption if using signatures +
            // CAP_LARGE_WRITE
            if ( th.hasCapability(SmbConstants.CAP_LARGE_WRITEX) && !th.areSignaturesActive() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

                        | ( this.useExtendedSecurity ? SmbConstants.CAP_EXTENDED_SECURITY : 0 )
                        | ( this.useLargeReadWrite ? SmbConstants.CAP_LARGE_READX : 0 ) | ( this.useLargeReadWrite ? SmbConstants.CAP_LARGE_WRITEX : 0 )
                        | ( this.useUnicode ? SmbConstants.CAP_UNICODE : 0 );
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  7. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        /**
         * 
         */
        public static final int SMB2_SHARE_CAP_DFS = 0x8;
    
        /**
         * 
         */
        public static final int SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY = 0x10;
    
        /**
         * 
         */
        public static final int SMB2_SHARE_CAP_SCALEOUT = 0x20;
    
        /**
         * 
         */
        public static final int SMB2_SHARE_CAP_CLUSTER = 0x40;
    
        /**
         * 
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon May 23 14:35:20 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/SmbNegotiationResponse.java

    
        /**
         * @return whether signing has been negotiated
         */
        boolean isSigningNegotiated ();
    
    
        /**
         * @param cap
         * @return whether capability is negotiated
         */
        boolean haveCapabilitiy ( int cap );
    
    
        /**
         * @return the send buffer size
         */
        int getSendBufferSize ();
    
    
        /**
         * @return the receive buffer size
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportInternal.java

    
    /**
     * @author mbechler
     *
     */
    public interface SmbTransportInternal extends SmbTransport {
    
        /**
         * @param cap
         * @return whether the transport has the given capability
         * @throws SmbException
         */
        boolean hasCapability ( int cap ) throws SmbException;
    
    
        /**
         * @return whether the transport has been disconnected
         */
        boolean isDisconnected ();
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            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
                if (FORCE_UNICODE) {
                    capabilities |= ServerMessageBlock.CAP_UNICODE;
                } else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
Back to top