- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for getNativeLanman (0.26 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 */
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/internal/smb1/com/SmbComSessionSetupAndX.java
dstIndex += writeString(this.primaryDomain, dst, dstIndex); } dstIndex += writeString(getConfig().getNativeOs(), dst, dstIndex); dstIndex += writeString(getConfig().getNativeLanman(), dst, dstIndex); return dstIndex - start; } @Override protected int readParameterWordsWireFormat(final byte[] buffer, final int bufferIndex) { return 0; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/ConfigurationTest.java
mockConfig.isUseUnicode(); mockConfig.isForceUnicode(); mockConfig.isUseBatching(); mockConfig.getNativeOs(); mockConfig.getNativeLanman(); mockConfig.getReceiveBufferSize(); mockConfig.getSendBufferSize(); mockConfig.getSoTimeout(); mockConfig.getConnTimeout(); mockConfig.getSessionTimeout();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getNativeOs(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNativeLanman() */ @Override public String getNativeLanman() { return this.delegate.getNativeLanman(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getMaximumBufferSize() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
when(mockDelegate.getDefaultUsername()).thenReturn("testuser"); when(mockDelegate.getDefaultPassword()).thenReturn("testpass"); when(mockDelegate.getNativeLanman()).thenReturn("jCIFS"); // When String oemEncoding = delegatingConfig.getOemEncoding(); String netbiosHostname = delegatingConfig.getNetbiosHostname();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXTest.java
setupNegotiateStubs(); when(mockConfig.getVcNumber()).thenReturn(0); when(mockConfig.getNativeOs()).thenReturn("Test OS"); when(mockConfig.getNativeLanman()).thenReturn("Test LAN"); byte[] blob = blobCred(); SmbComSessionSetupAndX obj = new SmbComSessionSetupAndX(mockContext, mockNegotiate, mockAndX, blob); byte[] buf = new byte[256];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/context/SingletonContextTest.java
CIFSContext context = SingletonContext.getInstance(); assertNotNull(context); assertEquals("CustomOS", context.getConfig().getNativeOs()); assertEquals("CustomLanman", context.getConfig().getNativeLanman()); } @Test void testInitAlreadyInitializedThrowsException() throws CIFSException { // Test attempting to initialize when already initialized 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) -
src/test/java/jcifs/config/BaseConfigurationTest.java
} @Test @DisplayName("Test SMB configuration getters") void testSmbConfigurationGetters() { assertEquals("jCIFS", config.getNativeLanman()); assertNull(config.getNativeOs()); assertEquals(1, config.getVcNumber()); assertEquals(0, config.getCapabilities()); assertNull(config.getMinimumVersion());
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
String getNativeOs(); /** * * Property {@code jcifs.smb.client.nativeLanMan} (string, default {@code jCIFS}) * * @return Lanman string to report */ String getNativeLanman(); /** * * Property {@code jcifs.smb.client.rcv_buf_size} (int, default 65535) * * @return receive buffer size, in bytes * @deprecated use getReceiveBufferSize instead
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/config/BaseConfiguration.java
return this.smbNotifyBufferSize; } @Override public int getMaxMpxCount() { return this.maxMpxCount; } @Override public String getNativeLanman() { return this.nativeLanMan; } @Override public String getNativeOs() { return this.nativeOs; } @Override public int getVcNumber() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)