Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Hegazy (0.18 sec)

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

     * error codes, constants and text messages like "The device is not ready"
     * are provided.
     * <p>
     * The jCIFS client maps DOS error codes to NTSTATUS codes. This means that
     * the user may recieve a different error from a legacy server than that of
     * a newer varient such as Windows NT and above. If you should encounter
     * such a case, please report it to jcifs at samba dot org and we will
     * change the mapping.
     */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbException.java

     * error codes, constants and text messages like "The device is not ready"
     * are provided.
     * <p>
     * The jCIFS client maps DOS error codes to NTSTATUS codes. This means that
     * the user may receive a different error from a legacy server than that of
     * a newer variant such as Windows NT and above. If you should encounter
     * such a case, please report it to jcifs at samba dot org and we will
     * change the mapping.
     */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 07:16:55 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

    
        /**
         * Replaces the entry with key in the cache map with this referral
         */
        void replaceCache ();
    
    
        /**
         * Not exactly sure what that is all about, certainly legacy stuff
         * 
         * @return resolveHashes
         */
        boolean isResolveHashes ();
    
    
        /**
         * @return whether this refrral needs to be resolved further
         */
        boolean isIntermediate ();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/DialectVersion.java

    package jcifs;
    
    
    import java.util.EnumSet;
    import java.util.Set;
    
    import jcifs.internal.smb2.Smb2Constants;
    
    
    /**
     * @author mbechler
     *
     */
    public enum DialectVersion {
    
        /**
         * Legacy SMB1/CIFS
         */
        SMB1,
    
        /**
         * SMB 2.02 - Windows Vista+
         */
        SMB202(Smb2Constants.SMB2_DIALECT_0202),
    
        /**
         * SMB 2.1 - Windows 7/Server 2008R2
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/spnego/SpnegoConstants.java

    public interface SpnegoConstants {
    
        public static final String SPNEGO_MECHANISM = "1.3.6.1.5.5.2";
    
        public static final String KERBEROS_MECHANISM = "1.2.840.113554.1.2.2";
    
        public static final String LEGACY_KERBEROS_MECHANISM = "1.2.840.48018.1.2.2";
    
        public static final String NTLMSSP_MECHANISM = "1.3.6.1.4.1.311.2.2.10";
    
    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)
  6. src/main/java/jcifs/ntlmssp/Type3Message.java

         * @param targetName
         *            SPN of the target system, optional
         * @param passwordHash
         *            The NT password hash, takes precedence over password (which is no longer required unless legacy LM
         *            authentication is needed)
         * @param password
         *            The password to use when constructing the response.
         * @param domain
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbSessionImpl.java

                        throw new SmbException("Server does not supported extended security");
                    }
    
                    log.debug("Performing legacy session setup");
                    if ( ! ( this.credentials instanceof NtlmPasswordAuthenticator ) ) {
                        throw new SmbAuthException("Incompatible credentials");
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

    
        /**
         * Enable port 139 failover
         * 
         * Property <tt>jcifs.smb.client.port139.enabled</tt> (boolean, default false)
         * 
         * @return whether to failover to legacy transport on port 139
         */
        boolean isPort139FailoverEnabled ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.useUnicode</tt> (boolean, default true)
         * 
    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/SmbFile.java

                    // We do only really care if we open for writing and not shared for writing
                    // otherwise there are no guarantees anyway, but this stuff is legacy anyways.
                    SmbComSeek seekReq = new SmbComSeek(config, 0);
                    seekReq.setMode(0x2); // from EOF
                    SmbComSeekResponse seekResp = new SmbComSeekResponse(config);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top