Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DfsEnumArray200 (0.15 sec)

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

            decodedInfo200.decode(src);
    
            assertNull(decodedInfo200.dfs_name);
        }
    
        @Test
        void testDfsEnumArray200_EncodeDecode() throws NdrException {
            netdfs.DfsEnumArray200 enumArray200 = new netdfs.DfsEnumArray200();
            enumArray200.count = 1;
            enumArray200.s = new netdfs.DfsInfo200[1];
            enumArray200.s[0] = new netdfs.DfsInfo200();
            enumArray200.s[0].dfs_name = "dfs_name_enum200";
    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/test/java/jcifs/MsrpcDfsRootEnumTest.java

        }
    
        @Test
        @DisplayName("getEntries should return empty array when no DFS roots exist")
        void testGetEntries_emptyArray() throws Exception {
            // Create empty DfsEnumArray200
            netdfs.DfsEnumArray200 emptyArray = new netdfs.DfsEnumArray200();
            emptyArray.count = 0;
            emptyArray.s = new netdfs.DfsInfo200[0];
    
            // Replace the info.e field with our empty array
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

            }
        }
    
        /**
         * Array structure for DFS enumeration containing level 200 information
         */
        public static class DfsEnumArray200 extends NdrObject {
    
            /**
             * Default constructor for DfsEnumArray200
             */
            public DfsEnumArray200() {
                // Default constructor
            }
    
            /**
             * Number of DFS entries in the array
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

            }
        }
    
        /**
         * Array structure for DFS enumeration containing level 200 information
         */
        public static class DfsEnumArray200 extends NdrObject {
    
            /**
             * Default constructor for DfsEnumArray200
             */
            public DfsEnumArray200() {
                // Default constructor
            }
    
            /**
             * Number of DFS entries in the array
             */
    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