Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DfsInfo1 (0.05 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            NdrBuffer src = new NdrBuffer(encodeBuffer, 0);
            netdfs.DfsInfo1 decodedInfo1 = new netdfs.DfsInfo1();
            decodedInfo1.decode(src);
    
            assertEquals(info1.entry_path, decodedInfo1.entry_path);
        }
    
        @Test
        void testDfsInfo1_EncodeDecode_NullEntryPath() throws NdrException {
            netdfs.DfsInfo1 info1 = new netdfs.DfsInfo1();
            info1.entry_path = null;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

        /**
         * DFS information level 1 structure containing basic DFS entry information
         */
        public static class DfsInfo1 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo1
             */
            public DfsInfo1() {
                // Default constructor
            }
    
            /**
             * The DFS entry path
             */
            public String entry_path;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

        /**
         * DFS information level 1 structure containing basic DFS entry information
         */
        public static class DfsInfo1 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo1
             */
            public DfsInfo1() {
                // Default constructor
            }
    
            /**
             * The DFS entry path
             */
            public String entry_path;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.8K bytes
    - Viewed (0)
Back to top