- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 83 for 0x00080000 (0.05 sec)
-
src/test/java/jcifs/dcerpc/msrpc/MsrpcLsarOpenPolicy2Test.java
void setUp() { MockitoAnnotations.openMocks(this); } @Test void constructor_shouldInitializeFieldsCorrectly() { // Given String server = "testServer"; int access = 0x00000001; // Example access value // When MsrpcLsarOpenPolicy2 msrpcLsarOpenPolicy2 = new MsrpcLsarOpenPolicy2(server, access, mockPolicyHandle); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtTransQuerySecurityDescTest.java
*/ static Stream<org.junit.jupiter.params.provider.Arguments> validInputs() { return Stream.of(org.junit.jupiter.params.provider.Arguments.of(0x0001, 0x00000000), org.junit.jupiter.params.provider.Arguments.of(0xFFFF, 0x12345678), org.junit.jupiter.params.provider.Arguments.of(-1, -123456)); } @ParameterizedTest
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
public static final int SMB2_FLAGS_SERVER_TO_REDIR = 0x00000001; /** * Flag indicating this is an asynchronous command. */ public static final int SMB2_FLAGS_ASYNC_COMMAND = 0x00000002; /** * Flag indicating this operation is related to the previous operation in a compound request. */ public static final int SMB2_FLAGS_RELATED_OPERATIONS = 0x00000004; /** * Flag indicating the message is signed.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcError.java
*/ public interface DcerpcError { /** * Generic fault code for other errors */ int DCERPC_FAULT_OTHER = 0x00000001; /** * Access denied fault code */ int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; /** * Cannot perform operation fault code */ int DCERPC_FAULT_CANT_PERFORM = 0x000006D8; /** * NDR encoding error fault code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcError.java
*/ public interface DcerpcError { /** * Generic fault code for other errors */ int DCERPC_FAULT_OTHER = 0x00000001; /** * Access denied fault code */ int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; /** * Cannot perform operation fault code */ int DCERPC_FAULT_CANT_PERFORM = 0x000006D8; /** * NDR encoding error fault code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
Encdec.enc_uint32le(0x00000000, temp, 4); // Reserved Encdec.enc_uint64le(nanos1601, temp, 8); System.arraycopy(clientChallenge, 0, temp, 16, 8); Encdec.enc_uint32le(0x00000000, temp, 24); // Unknown if (targetInfo != null) { System.arraycopy(targetInfo, 0, temp, 28, targetInfoLength); } Encdec.enc_uint32le(0x00000000, temp, 28 + targetInfoLength); // mystery bytes!
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaCapabilities.java
*/ public class RdmaCapabilities { /** * RDMA transform capabilities flag indicating response is requested */ public static final int SMB_DIRECT_RESPONSE_REQUESTED = 0x00000001; /** * Default maximum size for RDMA read/write operations (1MB) */ public static final int DEFAULT_RDMA_READ_WRITE_SIZE = 1048576; // 1MB /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
public static final int WITNESS_HEARTBEAT = 3; // Common return codes from MS-SWN specification /** Operation completed successfully */ public static final int ERROR_SUCCESS = 0x00000000; /** Invalid parameter was passed to the operation */ public static final int ERROR_INVALID_PARAMETER = 0x00000057; /** Buffer provided is insufficient */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
private int maxMpxCount; private int snd_buf_size; private int recv_buf_size; private int tx_buf_size; private int capabilities; private final int sessionKey = 0x00000000; private boolean useUnicode; /** * Creates a new SMB1 negotiate response. * * @param ctx the CIFS context */ public SmbComNegotiateResponse(final CIFSContext ctx) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessEnumTest.java
assertEquals(2, WitnessVersion.values().length); WitnessVersion v1 = WitnessVersion.VERSION_1; WitnessVersion v2 = WitnessVersion.VERSION_2; assertEquals(0x00010001, v1.getValue()); assertEquals(0x00020000, v2.getValue()); // Verify version ordering assertTrue(v2.getValue() > v1.getValue()); } @Test void testWitnessEventTypes() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 6.1K bytes - Viewed (0)