- Sort Score
- Result 10 results
- Languages All
Results 21 - 29 of 29 for NdrObject (0.06 sec)
-
src/main/java/jcifs/smb1/dcerpc/ndr/NdrSmall.java
package jcifs.smb1.dcerpc.ndr; /** * Represents an NDR small integer (1 byte unsigned) for DCE/RPC communication. * This class encapsulates a single byte value (0-255) in NDR format. */ public class NdrSmall extends NdrObject { /** * The small integer value (0-255) */ public int value; /** * Constructs an NdrSmall with the specified value
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrHyper.java
*/ package jcifs.smb1.dcerpc.ndr; /** * NDR representation of a hyper integer (8-byte signed integer). */ public class NdrHyper extends NdrObject { /** * The hyper integer value. */ public long value; /** * Constructs an NdrHyper with the specified value. * * @param value the hyper integer value */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrLong.java
*/ package jcifs.smb1.dcerpc.ndr; /** * NDR representation of a long integer (4-byte signed integer). */ public class NdrLong extends NdrObject { /** * The long integer value. */ public int value; /** * Constructs an NdrLong with the specified value. * * @param value the long integer value */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
package jcifs.dcerpc.msrpc; import jcifs.dcerpc.DcerpcMessage; import jcifs.dcerpc.rpc; import jcifs.dcerpc.ndr.NdrBuffer; import jcifs.dcerpc.ndr.NdrException; import jcifs.dcerpc.ndr.NdrObject; /** * Security Account Manager Remote (SAMR) protocol implementation. * This class provides DCE/RPC interface for SAM database operations including * user account management, group operations, and domain security functions. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.dcerpc.DcerpcMessage; import jcifs.smb1.dcerpc.rpc; import jcifs.smb1.dcerpc.ndr.NdrBuffer; import jcifs.smb1.dcerpc.ndr.NdrException; import jcifs.smb1.dcerpc.ndr.NdrObject; /** * Security Account Manager Remote (SAMR) protocol implementation for SMB1. * This class provides DCE/RPC interface for SAM database operations including
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
import jcifs.smb1.dcerpc.ndr.NdrBuffer; import jcifs.smb1.dcerpc.ndr.NdrException; import jcifs.smb1.dcerpc.ndr.NdrObject; /** * Abstract base class for DCERPC messages. * This class provides common functionality for all DCE/RPC message types in SMB1 protocol. */ public abstract class DcerpcMessage extends NdrObject implements DcerpcConstants { /** * Default constructor for DcerpcMessage.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrShort.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.ndr; /** * NDR representation of a short integer (2-byte signed integer). */ public class NdrShort extends NdrObject { /** * The short integer value. */ public int value; /** * Constructs an NdrShort with the specified value. * * @param value the short integer value */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrShort.java
*/ package jcifs.smb1.dcerpc.ndr; /** * NDR representation of a short integer (2-byte signed integer). */ public class NdrShort extends NdrObject { /** * The short integer value. */ public int value; /** * Constructs an NdrShort with the specified value. * * @param value the short integer value */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
void testInheritance() { // Then assertTrue(bind instanceof DcerpcMessage, "Should extend DcerpcMessage"); assertTrue(bind instanceof jcifs.dcerpc.ndr.NdrObject, "Should extend NdrObject"); assertTrue(bind instanceof DcerpcConstants, "Should implement DcerpcConstants"); } @Test @DisplayName("DcerpcBind should have access to parent class methods")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0)