- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 58 for getRFlags (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/dcerpc/DcerpcMessage.java
* @return the packet type */ public int getPtype() { return ptype; } /** * Gets the flags of this DCERPC message * @return the message flags */ public int getFlags() { return flags; } /** * Check if a specific flag is set. * @param flag the flag to check * @return whether flag is set */ public boolean isFlagSet(final int flag) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/SSPContext.java
*/ boolean isPreferredMech(ASN1ObjectIdentifier selectedMech); /** * Gets the negotiated context flags. * @return context flags */ int getFlags(); /** * Gets the array of supported security mechanism OIDs. * @return array of supported mechanism OIDs */ ASN1ObjectIdentifier[] getSupportedMechs(); /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.9K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
assertNotNull(msrpcShareGetInfo); assertEquals(0, msrpcShareGetInfo.getPtype()); assertEquals(DcerpcConstants.DCERPC_FIRST_FRAG | DcerpcConstants.DCERPC_LAST_FRAG, msrpcShareGetInfo.getFlags()); // Verify parent class initialization assertNotNull(msrpcShareGetInfo.info); assertTrue(msrpcShareGetInfo.info instanceof srvsvc.ShareInfo502); assertEquals(502, msrpcShareGetInfo.level);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
this.state = state; } /** * Gets the registration flags. * * @return the registration flags */ public int getFlags() { return flags; } /** * Sets the registration flags. * * @param flags the registration flags */ public void setFlags(int flags) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 6.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java
// MS-SMB2 timeout field is 4 bytes (uint32), so clamp to max value return Math.min(intervals, 0xFFFFFFFFL); } /** * Get the flags * @return the flags */ public int getFlags() { return flags; } /** * Check if this is a persistent handle request * @return true if persistent */ public boolean isPersistent() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
/** * Gets the flags field which contains flags in SMB 3.1.1 or encryption algorithm ID in SMB 3.0/3.0.2 * * @return the flags (SMB 3.1.1) or encryption algorithm (SMB 3.0/3.0.2) */ public int getFlags() { return this.flags; } /** * Sets the flags field which contains flags in SMB 3.1.1 or encryption algorithm ID in SMB 3.0/3.0.2 * * @param flagsCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.1K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
} @Test @DisplayName("getFlags should return correct flags") void testGetFlags() { message.flags = DcerpcConstants.RPC_C_PF_BROADCAST; assertEquals(DcerpcConstants.RPC_C_PF_BROADCAST, message.getFlags()); } @Test @DisplayName("getOpnum should return correct operation number")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 18.3K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/NtlmContextTest.java
Type1Message type1Message = new Type1Message(type1Token); // Type1Message ORs default flags with provided flags; ensure expected bits are present assertTrue((type1Message.getFlags() & context.ntlmsspFlags) == context.ntlmsspFlags); assertEquals(domain, type1Message.getSuppliedDomain()); } @Test void testInitSecContext_state2_type3Message() throws Exception {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
} /** * Checks whether this SMB2 response packet has been signed. * * @return whether the packet has been signed. */ public boolean isSigned() { return (getFlags() & SMB2_FLAGS_SIGNED) != 0; } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#getExpiration() */ @Override public Long getExpiration() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 8.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java
*/ public void setFlags(int flags) { this.flags = flags; } /** * Gets the registration flags. * * @return the registration flags */ public int getFlags() { return flags; } /** * Sets the timeout value in seconds. * * @param timeout the timeout value */ public void setTimeout(int timeout) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 8.6K bytes - Click Count (0)