- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for isForceUnicode (0.21 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java
this.maxDataCount = 4096; this.maxSetupCount = (byte) 0x00; } /** * {@inheritDoc} * * @see jcifs.internal.smb1.ServerMessageBlock#isForceUnicode() */ @Override public boolean isForceUnicode () { return true; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { dst[ dstIndex++ ] = this.getSubCommand();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
if ( ctx.getConfig().isUseUnicode() || ctx.getConfig().isForceUnicode() ) { this.capabilities |= SmbConstants.CAP_UNICODE; } if ( ( this.capabilities & SmbConstants.CAP_UNICODE ) == 0 ) { // server doesn't want unicode if ( ctx.getConfig().isForceUnicode() ) { this.capabilities |= SmbConstants.CAP_UNICODE;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isDfsConvertToFQDN(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isForceUnicode() */ @Override public boolean isForceUnicode () { return this.delegate.isForceUnicode(); } /** * {@inheritDoc} * * @see jcifs.Configuration#isUseUnicode() */ @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/internal/smb1/trans2/Trans2GetDfsReferralResponse.java
} /** * @return the buffer */ public DfsReferralResponseBuffer getDfsResponse () { return this.dfsResponse; } @Override public boolean isForceUnicode () { return true; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.useBatching; } @Override public boolean isUseUnicode () { return this.useUnicode; } @Override public boolean isForceUnicode () { return this.forceUnicode; } @Override public boolean isDfsDisabled () { return this.dfsDisabled; } @Override
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.forceUnicode</tt> (boolean, default false) * * @return whether to use unicode, even if the server does not announce it */ boolean isForceUnicode (); /** * * Property <tt>jcifs.smb.client.useBatching</tt> (boolean, default false) * * @return whether to enable support for SMB1 AndX command batching */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 32.7K bytes - Viewed (0)