- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getNativeLanman (0.1 sec)
-
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 ( byte[] buffer, int bufferIndex ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 17 10:20:23 UTC 2019 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
public SmbComSessionSetupAndXResponse ( Configuration config, ServerMessageBlock andx ) { super(config, andx); } /** * @return the nativeLanMan */ public final String getNativeLanMan () { return this.nativeLanMan; } /** * @return the nativeOs */ public final String getNativeOs () { return this.nativeOs; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property <tt>jcifs.smb.client.nativeLanMan</tt> (string, default <tt>jCIFS</tt>) * * @return Lanman string to report */ String getNativeLanman (); /** * * Property <tt>jcifs.smb.client.rcv_buf_size</tt> (int, default 65535) * * @return receive buffer size, in bytes
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)