- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for NdrLong (0.05 sec)
-
src/main/java/jcifs/smb1/dcerpc/ndr/NdrLong.java
/** * 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 */ public NdrLong(final int value) { this.value = value; } @Override
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/ndr/NdrLong.java
/** * 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 */ public NdrLong(final int value) { this.value = value; } @Override
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/ndr/NdrLongTest.java
int minIntValue = Integer.MIN_VALUE; NdrLong ndrLongMin = new NdrLong(minIntValue); assertEquals(minIntValue, ndrLongMin.value, "Constructor should correctly initialize with Integer.MIN_VALUE."); } @Test void encode_shouldCallEncNdrLongWithCorrectValue() throws NdrException { int testValue = 98765; NdrLong ndrLong = new NdrLong(testValue); // Call the encode method
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.dcerpc.ndr.NdrLong; import jcifs.smb1.smb1.FileEntry; import jcifs.smb1.smb1.SmbShareInfo; /** * MSRPC implementation for enumerating DFS roots. * This class provides functionality to enumerate Distributed File System (DFS)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; import jcifs.dcerpc.ndr.NdrLong; import jcifs.internal.smb1.net.SmbShareInfo; import jcifs.smb.FileEntry; /** * MSRPC implementation for enumerating DFS roots. * This class provides functionality to enumerate Distributed File System (DFS)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java
String dfsName = "dfs_name"; int level = 1; int prefmaxlen = 1024; netdfs.DfsEnumStruct info = new netdfs.DfsEnumStruct(); NdrLong totalentries = new NdrLong(0); netdfs.NetrDfsEnumEx enumEx = new netdfs.NetrDfsEnumEx(dfsName, level, prefmaxlen, info, totalentries); assertEquals(dfsName, enumEx.dfs_name);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
package jcifs.dcerpc.msrpc; import jcifs.dcerpc.DcerpcMessage; import jcifs.dcerpc.ndr.NdrBuffer; import jcifs.dcerpc.ndr.NdrException; import jcifs.dcerpc.ndr.NdrLong; import jcifs.dcerpc.ndr.NdrObject; /** * DCE/RPC interface for Distributed File System (DFS) operations. * Provides structures and methods for DFS management and enumeration. */ @SuppressWarnings("all") public class netdfs { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.dcerpc.DcerpcMessage; import jcifs.smb1.dcerpc.ndr.NdrBuffer; import jcifs.smb1.dcerpc.ndr.NdrException; import jcifs.smb1.dcerpc.ndr.NdrLong; import jcifs.smb1.dcerpc.ndr.NdrObject; /** * DCE/RPC interface for Distributed File System (DFS) operations. * Provides structures and methods for DFS management and enumeration. */ public class netdfs { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0)