Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for CIFS (0.26 sec)

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

    import java.util.Collections;
    import java.util.HashMap;
    import java.util.Map;
    
    import jcifs.CIFSException;
    import jcifs.util.Hexdump;
    
    
    /**
     * There are hundreds of error codes that may be returned by a CIFS
     * server. Rather than represent each with it's own <code>Exception</code>
     * class, this class represents all of them. For many of the popular
     * error codes, constants and text messages like "The device is not ready"
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 07:16:55 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  2. internal/disk/type_linux.go

    	"5346544e": "NTFS",
    	"58465342": "XFS",
    	"61756673": "AUFS",
    	"6969":     "NFS",
    	"ef51":     "EXT2OLD",
    	"ef53":     "EXT4",
    	"f15f":     "ecryptfs",
    	"794c7630": "overlayfs",
    	"2fc12fc1": "zfs",
    	"ff534d42": "cifs",
    	"53464846": "wslfs",
    }
    
    // getFSType returns the filesystem type of the underlying mounted filesystem
    func getFSType(ftype int64) string {
    	fsTypeHex := strconv.FormatInt(ftype, 16)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Aug 19 01:35:22 GMT 2021
    - 1.6K bytes
    - Viewed (3)
  3. README.md

    JCIFS
    [![Java CI with Maven](https://github.com/codelibs/jcifs/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/jcifs/actions/workflows/maven.yml)
    =====
    
    JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java.
    From version 2.x, this project is forked from [jcifs-ng](https://github.com/AgNO3/jcifs-ng) and existing jcifs code is merged as `smb1`.
    
    ## Version
    
    Plain Text
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Wed May 10 09:29:34 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/DialectVersion.java

    
    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 Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  5. internal/disk/stat_linux_s390x.go

    	"5346544e": "NTFS",
    	"58465342": "XFS",
    	"61756673": "AUFS",
    	"6969":     "NFS",
    	"ef51":     "EXT2OLD",
    	"ef53":     "EXT4",
    	"f15f":     "ecryptfs",
    	"794c7630": "overlayfs",
    	"2fc12fc1": "zfs",
    	"ff534d42": "cifs",
    	"53464846": "wslfs",
    }
    
    // getFSType returns the filesystem type of the underlying mounted filesystem
    func getFSType(ftype uint32) string {
    	fsTypeHex := strconv.FormatUint(uint64(ftype), 16)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 2.6K bytes
    - Viewed (2)
  6. src/test/java/jcifs/tests/PACTest.java

                        realm: W2K19SINGLE.SPRINGFIELD
                        sname
                            name-type: kRB5-NT-UNKNOWN (0)
                            sname-string: 2 items
                                SNameString: cifs
                                SNameString: fakeserver.w2k19single.springfield
                        enc-part
                            etype: eTYPE-ARCFOUR-HMAC-MD5 (23)
                            kvno: 5
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpFilter.java

             * technique that NTLMv2 specifically thwarts. A real NTLM Filter would
             * need to do a NETLOGON RPC that JCIFS will likely never implement
             * because it requires a lot of extra crypto not used by CIFS.
             */
            p.setProperty("jcifs.smb.lmCompatibility", "0");
            p.setProperty("jcifs.smb.client.useExtendedSecurity", "false");
    
            Enumeration<String> e = filterConfig.getInitParameterNames();
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  8. internal/disk/stat_linux_32bit.go

    	"5346544e": "NTFS",
    	"58465342": "XFS",
    	"61756673": "AUFS",
    	"6969":     "NFS",
    	"ef51":     "EXT2OLD",
    	"ef53":     "EXT4",
    	"f15f":     "ecryptfs",
    	"794c7630": "overlayfs",
    	"2fc12fc1": "zfs",
    	"ff534d42": "cifs",
    	"53464846": "wslfs",
    }
    
    // getFSType returns the filesystem type of the underlying mounted filesystem
    func getFSType(ftype int32) string {
    	fsTypeHex := strconv.FormatInt(int64(ftype), 16)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbException.java

    package jcifs.smb1.smb1;
    
    import java.io.IOException;
    import java.io.StringWriter;
    
    import jcifs.smb1.util.Hexdump;
    
    import java.io.PrintWriter;
    
    /**
     * There are hundreds of error codes that may be returned by a CIFS
     * server. Rather than represent each with it's own <code>Exception</code>
     * class, this class represents all of them. For many of the popular
     * error codes, constants and text messages like "The device is not ready"
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.5K bytes
    - Viewed (0)
  10. pom.xml

    	<version>2.1.38-SNAPSHOT</version>
    	<packaging>jar</packaging>
    	<name>jCIFS</name>
    	<url>https://github.com/codelibs/jcifs</url>
    	<description>JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java</description>
    	<licenses>
    		<license>
    			<name>GNU Lesser General Public License, version 2.1</name>
    			<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
    XML
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
Back to top