- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 93 for 0x00000004 (0.04 sec)
-
src/main/java/jcifs/pac/PacSignature.java
/** * Kerberos checksum type for HMAC-SHA1-96 with AES-128. */ public static final int HMAC_SHA1_96_AES128 = 0x0000000F; /** * Kerberos checksum type for HMAC-SHA1-96 with AES-256. */ public static final int HMAC_SHA1_96_AES256 = 0x00000010; /** * Kerberos encryption type for ARCFOUR-HMAC (RC4-HMAC). */ public static final int ETYPE_ARCFOUR_HMAC = 23; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K 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/internal/witness/WitnessRpcMessage.java
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 */ public static final int ERROR_INSUFFICIENT_BUFFER = 0x0000007A; /** Operation is not supported */ public static final int ERROR_NOT_SUPPORTED = 0x00000032; /** Access denied to perform the operation */
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/dtyp/ACE.java
* the then same process is repeated for inherited ACEs. * <p> * For example, if user <code>WNET\alice</code> tries to open a file * with desired access bits <code>0x00000003</code> (<code>FILE_READ_DATA | * FILE_WRITE_DATA</code>) and the target file has the following security * descriptor ACEs: * * <pre> * Allow WNET\alice 0x001200A9 Direct
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessNotification.java
/** Resource state is unknown */ public static final int WITNESS_RESOURCE_STATE_UNKNOWN = 0x00000000; /** Resource is available for use */ public static final int WITNESS_RESOURCE_STATE_AVAILABLE = 0x00000001; /** Resource is unavailable */ public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF; /** * Creates a new empty witness notification. */ public WitnessNotification() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
assertEquals(domain.toUpperCase(), writtenDomain); } @ParameterizedTest @DisplayName("Test writeParametersWireFormat with various server types") @ValueSource(ints = { 0x00000000, 0x00000001, 0x00000801, 0x80000000, 0xFFFFFFFF }) void testWriteParametersWireFormatVariousServerTypes(int serverType) { String domain = "DOMAIN"; netServerEnum2 = new NetServerEnum2(realConfig, domain, serverType);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
// Then assertEquals(16, bytesRead); assertEquals(wireData.length, bytesRead); assertEquals((byte) 0x01, response.getShareType()); assertEquals(0x00000001, response.getShareFlags()); assertEquals(0x00000008, response.getCapabilities()); assertEquals(0x001F01FF, response.getMaximalAccess()); } @Test @DisplayName("Should not modify buffer during write operation")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/DosErrorTest.java
// Provide a handful of representative mappings present in the table. static Stream<Arguments> knownMappings() { return Stream.of(Arguments.of(0x00000000, 0x00000000), Arguments.of(0x00020001, 0xc000000f), Arguments.of(0x00050001, 0xc0000022), Arguments.of(0x00500001, 0xc0000035), Arguments.of(0x007b0001, 0xc0000033), Arguments.of(0x00320001, 0xC00000BB)); } @ParameterizedTest @MethodSource("knownMappings")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
private final int flags; // Notification flags public static final int WITNESS_RESOURCE_STATE_UNKNOWN = 0x00000000; public static final int WITNESS_RESOURCE_STATE_AVAILABLE = 0x00000001; public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF; public WitnessNotification(WitnessEventType eventType, String resourceName) { this.eventType = eventType;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
/** * Directory lease flag for recursive caching */ public static final int DIRECTORY_LEASE_FLAG_RECURSIVE = 0x00000001; /** * Directory lease flag for enabling notifications */ public static final int DIRECTORY_LEASE_FLAG_NOTIFICATIONS = 0x00000002; private Smb2LeaseKey leaseKey; private int leaseState; private DirectoryCacheScope cacheScope; private long maxCacheAge;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0)