- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for nativeLanMan (0.23 seconds)
-
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 */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.7K bytes - Click Count (0) -
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);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.9K bytes - Click Count (0) -
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));Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.9K bytes - Click Count (0)