- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for nativeOs (0.05 sec)
-
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 */ public final String getNativeOs() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java
if (extendedSecurity) { System.arraycopy(buffer, bufferIndex, blob, 0, blob.length); bufferIndex += blob.length; } nativeOs = readString(buffer, bufferIndex); bufferIndex += stringWireLength(nativeOs, bufferIndex); nativeLanMan = readString(buffer, bufferIndex, start + byteCount, 255, useUnicode); bufferIndex += stringWireLength(nativeLanMan, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/context/SingletonContextTest.java
Files.writeString(jcifsPropertiesPath, "jcifs.smb.client.nativeOs=FileOS"); System.setProperty("jcifs.properties", jcifsPropertiesPath.toString()); System.setProperty("jcifs.smb.client.nativeOs", "SystemOS"); Properties customProps = new Properties(); customProps.setProperty("jcifs.smb.client.nativeOs", "CustomOS"); SingletonContext.init(customProps);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
} value = props.getProperty("jcifs.native.os"); if (value != null) { this.nativeOs = value; } // Also support the alternative property name used in tests value = props.getProperty("jcifs.smb.client.nativeOs"); if (value != null) { this.nativeOs = value; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Buffer size for SMB notification operations */ protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE; /** Native operating system name to report */ protected String nativeOs; /** Native LAN Manager string to report */ protected String nativeLanMan = "jCIFS"; /** Virtual circuit number for SMB sessions */ protected int vcNumber = 1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** Connection timeout in milliseconds */ int CONN_TIMEOUT = Config.getInt("jcifs.smb1.smb.client.connTimeout", DEFAULT_CONN_TIMEOUT); /** Native operating system name */ String NATIVE_OS = Config.getProperty("jcifs.smb1.smb.client.nativeOs", System.getProperty("os.name")); /** Native LAN manager name */ String NATIVE_LANMAN = Config.getProperty("jcifs.smb1.smb.client.nativeLanMan", "jCIFS"); /** Virtual circuit number */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
} @Test @DisplayName("Test initDefaults with pre-set native OS") void testInitDefaultsWithPresetNativeOs() throws CIFSException { BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.nativeOs = "CustomOS"; testConfig.initDefaults(); assertEquals("CustomOS", testConfig.getNativeOs()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return whether to enable support for SMB1 AndX command batching */ boolean isUseBatching(); /** * * Property {@code jcifs.smb.client.nativeOs} (string, default {@code os.name}) * * @return OS string to report */ String getNativeOs(); /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
+ capabilities + ",accountName=" + accountName + ",primaryDomain=" + primaryDomain + ",NATIVE_OS=" + SmbConstants.NATIVE_OS + ",NATIVE_LANMAN=" + SmbConstants.NATIVE_LANMAN + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaMemoryRegion.java
* * @return remote key */ protected abstract int generateRemoteKey(); /** * Get native memory address of the buffer * * @param buffer buffer to get address for * @return native memory address */ protected abstract long getBufferAddress(ByteBuffer buffer); @Override public void close() { invalidate();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.3K bytes - Viewed (0)