Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nativeLanMan (0.09 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java

            super(config, andx);
        }
    
        /**
         * Returns the native LAN Manager string reported by the server.
         *
         * @return the nativeLanMan
         */
        public final String getNativeLanMan() {
            return this.nativeLanMan;
        }
    
        /**
         * Returns the native operating system string reported by the server.
         *
         * @return the nativeOs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java

            }
            nativeOs = readString(buffer, bufferIndex);
            bufferIndex += stringWireLength(nativeOs, bufferIndex);
            nativeLanMan = readString(buffer, bufferIndex, start + byteCount, 255, useUnicode);
            bufferIndex += stringWireLength(nativeLanMan, bufferIndex);
            if (!extendedSecurity) {
                primaryDomain = readString(buffer, bufferIndex, start + byteCount, 255, useUnicode);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/context/SingletonContextTest.java

            // Clear jcifs-specific properties to prevent test interference
            System.clearProperty("jcifs.smb.client.nativeOs");
            System.clearProperty("jcifs.smb.client.nativeLanMan");
        }
    
        @Test
        void testInitWithNullProperties() throws CIFSException {
            // Test successful initialization with null properties
            assertDoesNotThrow(() -> SingletonContext.init(null));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top