- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for DCERPC_FAULT_OTHER (0.12 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb1/dcerpc/DcerpcError.java
package jcifs.smb1.dcerpc; /** * DCE/RPC error codes and fault constants for SMB1 compatibility */ 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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/DcerpcError.java
*/ package jcifs.dcerpc; /** * DCE/RPC error codes and fault constants */ 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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.6K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcExceptionTest.java
*/ @Test void testGetMessageByDcerpcError_firstElement() { String message = DcerpcException.getMessageByDcerpcError(DcerpcError.DCERPC_FAULT_OTHER); assertEquals("DCERPC_FAULT_OTHER", message, "Should return correct message for first element."); } /** * Test getMessageByDcerpcError() with a known error code (middle element). */ @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.8K bytes - Click Count (0)