- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 58 for writeSetupWireFormat (0.28 sec)
-
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java
*/ @Override public final List<FileNotifyInformation> getNotifyInformation () { return this.notifyInformation; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override protected int writeParametersWireFormat ( 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/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
this.maxDataCount = 65536; this.maxSetupCount = (byte) 0x00; } @Override public int getPadding () { return 4; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override protected int writeParametersWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex;
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/trans2/Trans2QueryFSInformation.java
this.totalDataCount = 0; this.maxParameterCount = 0; this.maxDataCount = 800; this.maxSetupCount = 0; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { dst[ dstIndex++ ] = this.getSubCommand(); dst[ dstIndex++ ] = (byte) 0x00; return 2; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
dstIndex += 2; } else { dst[dstIndex++] = (byte)setupCount; dst[dstIndex++] = (byte)0x00; // Reserved3 dstIndex += writeSetupWireFormat( dst, dstIndex ); } return dstIndex - start; } int writeBytesWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; int p = pad;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransWaitNamedPipeResponse.java
*/ package jcifs.smb1.smb1; class TransWaitNamedPipeResponse extends SmbComTransactionResponse { // not much to this one is there :~) TransWaitNamedPipeResponse() { } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeDataWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java
setupCount = 0; totalDataCount = 0; maxParameterCount = 4; maxDataCount = 32768; maxSetupCount = (byte)0x00; } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; writeInt2( fid, dst, dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java
Trans2QueryPathInformationResponse( int informationLevel ) { this.informationLevel = informationLevel; subCommand = SmbComTransaction.TRANS2_QUERY_PATH_INFORMATION; } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeDataWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java
this.maxParameterCount = 10; this.maxItems = batchCount; this.maxDataCount = batchSize; this.maxSetupCount = 0; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { dst[ dstIndex++ ] = getSubCommand(); dst[ dstIndex++ ] = (byte) 0x00; return 2; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
int pathConsumed; int numReferrals; int flags; Referral[] referrals; Trans2GetDfsReferralResponse() { subCommand = SmbComTransaction.TRANS2_GET_DFS_REFERRAL; } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeDataWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransTransactNamedPipeResponse.java
class TransTransactNamedPipeResponse extends SmbComTransactionResponse { private SmbNamedPipe pipe; TransTransactNamedPipeResponse( SmbNamedPipe pipe ) { this.pipe = pipe; } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeDataWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2K bytes - Viewed (0)