Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Dadd (0.12 sec)

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

            Set<FileEntry> set = new HashSet<>();
    
            if ( tc.getDfs().isTrustedDomain(tc, locator.getServer()) ) {
                /*
                 * The server name is actually the name of a trusted
                 * domain. Add DFS roots to the list.
                 */
                try {
                    entries = doDfsRootEnum(tc, locator, locator.getAddress());
                    for ( int ei = 0; ei < entries.length; ei++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/EnumTest.java

                    while ( chld.hasNext() ) {
    
                        try ( SmbResource next = chld.next() ) {
                            try ( CloseableIterator<SmbResource> children = next.children() ) {}
                            names.add(next.getName());
                        }
                    }
                }
    
                assertTrue("Test directory  enum-test/a/b/c/ not found", names.contains("c/"));
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Authenticator.java

        private int contextLifetime = GSSContext.DEFAULT_LIFETIME;
        private boolean canFallback = false;
        private boolean forceFallback;
    
        static {
            PREFERRED_MECHS.add(new ASN1ObjectIdentifier("1.2.840.113554.1.2.2"));
            PREFERRED_MECHS.add(new ASN1ObjectIdentifier("1.2.840.48018.1.2.2"));
        }
    
    
        /**
         * Construct a <code>Kerb5Authenticator</code> object with <code>Subject</code>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                if (key.equalsIgnoreCase((String) entry.getKey())) {
                    values = (List) entry.getValue();
                    values.add(value);
                    break;
                }
            }
            if (values == null) {
                values = new ArrayList();
                values.add(value);
                requestProperties.put(key, values);
            }
            // 1.3-compatible.
    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)
  5. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                                userAddress = InetAddress.getByAddress(addressOctets.getOctets());
                            }
                            catch ( UnknownHostException e ) {}
                            this.userAddresses.add(userAddress);
                        }
                    }
                    break;
                case 10: // Authorization Data
                    ASN1Sequence authSequence = ASN1Util.as(ASN1Sequence.class, tagged);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

                    this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS);
                    this.resolverOrder.add(ResolverType.RESOLVER_DNS);
                    this.resolverOrder.add(ResolverType.RESOLVER_BCAST);
                }
                else {
                    this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS);
                    this.resolverOrder.add(ResolverType.RESOLVER_DNS);
    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)
  7. src/main/java/jcifs/smb/SIDCacheImpl.java

                        s.type = sid.type;
                        s.domainName = sid.domainName;
                        s.acctName = sid.acctName;
                    }
                    else {
                        list.add(s);
                    }
                }
    
                if ( list.size() > 0 ) {
                    SID[] resolved = list.toArray(new SID[list.size()]);
                    resolveSids0(authorityServerName, tc, resolved);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmContext.java

    import jcifs.ntlmssp.Type2Message;
    import jcifs.ntlmssp.Type3Message;
    import jcifs.util.Crypto;
    import jcifs.util.Hexdump;
    
    
    /**
     * For initiating NTLM authentication (including NTLMv2). If you want to add NTLMv2 authentication support to something
     * this is what you want to use. See the code for details. Note that JCIFS does not implement the acceptor side of NTLM
     * authentication.
     * 
     */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                    t -= 3600000;
                }
            }
            else {
                // not in DST
                if ( cfg.getLocalTimezone().inDaylightTime(new Date(t)) ) {
                    // t is in DST so add 1 hour
                    t += 3600000;
                }
                else {
                    // t isn't in DST either
                }
            }
            SMBUtil.writeInt4((int) ( t / 1000L ), dst, dstIndex);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            Object obj;
    
            synchronized ( this.inFlightLookups ) {
                if ( this.inFlightLookups.contains(name) == false ) {
                    this.inFlightLookups.add(name);
                    return null;
                }
                while ( this.inFlightLookups.contains(name) ) {
                    try {
                        this.inFlightLookups.wait();
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top