Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for Get (0.21 sec)

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

            synchronized ( this.dcLock ) {
                CacheEntry<DfsReferralDataInternal> ce = this.dcCache.get(dom);
                if ( ce != null && System.currentTimeMillis() > ce.expiration ) {
                    ce = null;
                }
                if ( ce != null ) {
                    DfsReferralDataInternal ri = ce.map.get(DC_ENTRY);
                    if ( ri == NEGATIVE_ENTRY ) {
                        return null;
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacMac.java

                else if ( type == PacSignature.HMAC_SHA1_96_AES128 || type == PacSignature.HMAC_SHA1_96_AES256 ) {
                    KerberosKey key = type == PacSignature.HMAC_SHA1_96_AES128 ? keys.get(PacSignature.ETYPE_AES128_CTS_HMAC_SHA1_96)
                            : keys.get(PacSignature.ETYPE_AES256_CTS_HMAC_SHA1_96);
                    if ( key == null ) {
                        throw new PACDecodingException("Missing key");
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            return this.max_recv;
        }
    
    
        /**
         * @return the max_xmit
         */
        int getMaxXmit () {
            return this.max_xmit;
        }
    
    
        /**
         * Get a handle to a service
         * 
         * @param url
         * @param tc
         *            context to use
         * @return a DCERPC handle for the given url
         * @throws MalformedURLException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

    /**
     * @author mbechler
     *
     */
    public class Smb2IoctlRequest extends ServerMessageBlock2Request<Smb2IoctlResponse> implements RequestWithFileId {
    
        /**
         * 
         */
        public static final int FSCTL_DFS_GET_REFERRALS = 0x0060194;
        /**
         * 
         */
        public static final int FSCTL_PIPE_PEEK = 0x0011400C;
        /**
         * 
         */
        public static final int FSCTL_PIPE_WAIT = 0x00110018;
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 07:13:17 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/DfsResolver.java

         * @throws CIFSException
         * @throws jcifs.smb.SmbAuthException
         */
        boolean isTrustedDomain ( CIFSContext tf, String domain ) throws CIFSException;
    
    
        /**
         * Get a connection to the domain controller for a given domain
         * 
         * @param domain
         * @param tf
         * @return connection
         * @throws CIFSException
         * @throws jcifs.smb.SmbAuthException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbWatchHandle.java

     * Handle for receiving change notifications from an SMB server
     * 
     * 
     * @author mbechler
     *
     */
    public interface SmbWatchHandle extends AutoCloseable, Callable<List<FileNotifyInformation>> {
    
        /**
         * Get the next set of changes
         * 
         * Will block until the server returns a set of changes that match the given filter. The file will be automatically
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Transport.java

        protected void finalize () throws Throwable {
            if ( !isDisconnected() && this.usageCount.get() != 0 ) {
                log.warn("Session was not properly released");
            }
        }
    
    
        /**
         * @return the number of known usages
         */
        protected long getUsageCount () {
            return this.usageCount.get();
        }
    
    
        protected abstract long makeKey ( Request request ) throws IOException;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

                    for ( KerberosKey key : keys ) {
                        keysByAlgo.put(key.getKeyType(), key);
                    }
    
                    KerberosKey serverKey = keysByAlgo.get(encType.getValue().intValue());
                    if ( keysByAlgo.isEmpty() || serverKey == null ) {
                        throw new PACDecodingException("Kerberos key not found for eType " + encType.getValue());
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/av/AvPairs.java

                }
            }
            return false;
        }
    
    
        /**
         * 
         * @param pairs
         * @param type
         * @return first occurance of the given type
         */
        public static AvPair get ( List<AvPair> pairs, int type ) {
            Iterator<AvPair> it = pairs.iterator();
            while ( it.hasNext() ) {
                AvPair p = it.next();
                if ( p.getType() == type ) {
                    return p;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            String key = connection.getHeaderFieldKey(0);
            String value = connection.getHeaderField(0);
            for (int i = 1; key != null || value != null; i++) {
                List values = (List) map.get(key);
                if (values == null) {
                    values = new ArrayList();
                    map.put(key, values);
                }
                values.add(value);
                key = connection.getHeaderFieldKey(i);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
Back to top