- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getNativeOs (0.21 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
dstIndex += writeString(this.accountName, dst, dstIndex); dstIndex += writeString(this.primaryDomain, dst, dstIndex); } dstIndex += writeString(getConfig().getNativeOs(), dst, dstIndex); dstIndex += writeString(getConfig().getNativeLanman(), dst, dstIndex); return dstIndex - start; } @Override
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
* @return the nativeLanMan */ public final String getNativeLanMan () { return this.nativeLanMan; } /** * @return the nativeOs */ public final String getNativeOs () { return this.nativeOs; } /** * @return the primaryDomain */ public final String getPrimaryDomain () { return this.primaryDomain; } /**
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.isUseBatching(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNativeOs() */ @Override public String getNativeOs () { return this.delegate.getNativeOs(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNativeLanman() */ @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.maxMpxCount; } @Override public String getNativeLanman () { return this.nativeLanMan; } @Override public String getNativeOs () { return this.nativeOs; } @Override public int getVcNumber () { return this.vcNumber; } @Override public int getCapabilities () {
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
boolean isUseBatching (); /** * * Property <tt>jcifs.smb.client.nativeOs</tt> (string, default <tt>os.name</tt>) * * @return OS string to report */ String getNativeOs (); /** * * Property <tt>jcifs.smb.client.nativeLanMan</tt> (string, default <tt>jCIFS</tt>) * * @return Lanman string to report */ String getNativeLanman ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)