- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for isResponse (0.17 sec)
-
src/main/java/jcifs/netbios/NameServicePacket.java
default: recordTypeString = "0x" + Hexdump.toHexString(this.recordType, 4); break; } return new String( "nameTrnId=" + this.nameTrnId + ",isResponse=" + this.isResponse + ",opCode=" + opCodeString + ",isAuthAnswer=" + this.isAuthAnswer + ",isTruncated=" + this.isTruncated + ",isRecurAvailable=" + this.isRecurAvailable + ",isRecurDesired=" + this.isRecurDesired
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
recordTypeString = "0x" + Hexdump.toHexString( recordType, 4 ); break; } return new String( "nameTrnId=" + nameTrnId + ",isResponse=" + isResponse + ",opCode=" + opCodeString + ",isAuthAnswer=" + isAuthAnswer + ",isTruncated=" + isTruncated + ",isRecurAvailable=" + isRecurAvailable +
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
isPrimary = false; parameterOffset = primarySetupOffset + ( setupCount * 2 ) + 2; if (command != SMB_COM_NT_TRANSACT) { if( command == SMB_COM_TRANSACTION && isResponse() == false ) { parameterOffset += stringWireLength( name, parameterOffset ); } } else if (command == SMB_COM_NT_TRANSACT) { parameterOffset += 2;
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/internal/smb1/trans/SmbComTransaction.java
// 2* setupCount this.parameterOffset += this.setupCount * 2; this.parameterOffset += 2; // ByteCount if ( this.getCommand() == SMB_COM_TRANSACTION && isResponse() == false ) { this.parameterOffset += stringWireLength(this.name, this.parameterOffset); } this.pad1 = pad(this.parameterOffset); this.parameterOffset += this.pad1;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
System.arraycopy(buffer, bufferIndex, this.signature, 0, 16); bufferIndex += 16; } return Smb2Constants.SMB2_HEADER_LENGTH; } boolean isResponse () { return ( this.flags & SMB2_FLAGS_SERVER_TO_REDIR ) == SMB2_FLAGS_SERVER_TO_REDIR; } protected abstract int writeBytesWireFormat ( byte[] dst, int dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
uid = readInt2( buffer, bufferIndex + TID_OFFSET + 4 ); mid = readInt2( buffer, bufferIndex + TID_OFFSET + 6 ); return HEADER_LENGTH; } boolean isResponse() { return ( flags & FLAGS_RESPONSE ) == FLAGS_RESPONSE; } /* * For this packet deconstruction technique to work for * other networking protocols the InputStream may need
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 21K 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)