- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 88 for 0x80000000 (0.22 sec)
-
src/test/java/jcifs/smb/NtlmUtilTest.java
Encdec.enc_uint32le(0x00000000, blob, 4); // Reserved Encdec.enc_uint64le(nanos1601, blob, 8); System.arraycopy(clientChallenge, 0, blob, 16, 8); Encdec.enc_uint32le(0x00000000, blob, 24); // Unknown System.arraycopy(avPairs, 0, blob, 28, avPairsLength); Encdec.enc_uint32le(0x00000000, blob, 28 + avPairsLength); // Act
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/Smb2HandleCapabilities.java
*/ public final class Smb2HandleCapabilities { /** * Flag indicating persistent handle capability */ public static final int SMB2_DHANDLE_FLAG_PERSISTENT = 0x00000002; /** * Default timeout for durable handles (2 minutes) */ public static final long DEFAULT_DURABLE_TIMEOUT = 120000; /** * Maximum timeout for durable handles (5 minutes) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 1.3K bytes - Viewed (0) -
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/witness/WitnessRegistration.java
private byte[] contextHandle; // Registration flags /** No special registration flags */ public static final int WITNESS_REGISTER_NONE = 0x00000000; /** Register for IP address change notifications */ public static final int WITNESS_REGISTER_IP_NOTIFICATION = 0x00000001; // Registration state private volatile WitnessRegistrationState state; private volatile long lastHeartbeat;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K 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/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
* value and the corresponding little-endian byte array. */ static java.util.stream.Stream<Arguments> int32Provider() { return java.util.stream.Stream.of(Arguments.of(0x00000000, new byte[] { 0x00, 0x00, 0x00, 0x00 }), Arguments.of(0x12345678, new byte[] { 0x78, 0x56, 0x34, 0x12 }), Arguments.of(0xFFFFFFFF, new byte[] { (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF }),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K 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)