Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 502 for return (0.37 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        }
    
        public URL getURL() {
            return connection.getURL();
        }
    
        public int getContentLength() {
            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getContentLength();
        }
    
        public String getContentType() {
            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getContentType();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                        return true;
                    }
                }
            }
            return false;
        }
    
    
    /**
     * Return the upcased username hash code.
     */
        public int hashCode() {
            return getName().toUpperCase().hashCode();
        }
    /**
     * Return the domain and username in the format:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

    
        /**
         * 
         * @return whether the transport is disconnected
         */
        public boolean isDisconnected () {
            return this.state == 4 || this.state == 5 || this.state == 6 || this.state == 0;
        }
    
    
        /**
         * @return whether the transport is marked failed
         */
        public boolean isFailed () {
            return this.state == 5 || this.state == 6;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

     */
    
        public synchronized static void setDefault( NtlmAuthenticator a ) {
            if( auth != null ) {
                return;
            }
            auth = a;
        }
    
        protected final String getRequestingURL() {
            return url;
        }
        protected final SmbAuthException getRequestingException() {
            return sae;
        }
    
    /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

         */
        public int getDialectIndex () {
            return this.dialectIndex;
        }
    
    
        /**
         * @return the negotiated capbilities
         */
        public int getNegotiatedCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * 
         * @return negotiated send buffer size
         */
        public int getNegotiatedSendBufferSize () {
    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)
  6. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

            case Smb2Constants.SMB2_0_INFO_QUOTA:
                return createQuotaInformation(infoClass);
            case Smb2Constants.SMB2_0_INFO_SECURITY:
                return createSecurityInformation(infoClass);
            default:
                throw new SMBProtocolDecodingException("Unknwon information type " + infoType);
            }
        }
    
    
        /**
         * @param infoClass
         * @return
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/Crypto.java

    
        /**
         * 
         * @return MD4 digest
         */
        public static MessageDigest getMD4 () {
            try {
                return MessageDigest.getInstance("MD4", getProvider());
            }
            catch ( NoSuchAlgorithmException e ) {
                throw new CIFSUnsupportedCryptoException(e);
            }
        }
    
    
        /**
         * 
         * @return MD5 digest
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/NetbiosAddress.java

         *
         * @return the MAC address as an array of six bytes
         * @throws UnknownHostException
         *             if the host cannot be resolved to
         *             determine the MAC address.
         */
        byte[] getMacAddress ( CIFSContext tc ) throws UnknownHostException;
    
    
        /**
         * Returned the hex code associated with this name(e.g. 0x20 is for the file service)
         * 
         * @return the name type
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/av/AvPairs.java

            pos += 4;
            return enc;
        }
    
    
        private static AvPair parseAvPair ( int avId, byte[] raw ) {
            switch ( avId ) {
            case AvPair.MsvAvFlags:
                return new AvFlags(raw);
            case AvPair.MsvAvTimestamp:
                return new AvTimestamp(raw);
            case AvPair.MsvAvTargetName:
                return new AvTargetName(raw);
            case AvPair.MsvAvSingleHost:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

            nb.deferred = deferred;
            return nb;
        }
    
    
        
        public void reset() {
            this.index = start;
            length = 0;
            deferred = this;
        }
        public int getIndex() {
            return index;
        }
        public void setIndex(int index) {
            this.index = index;
        }
        public int getCapacity() {
            return buf.length - start;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
Back to top