Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DfsEnumStruct (0.08 sec)

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

            assertNull(decodedEnumArray300.s);
        }
    
        @Test
        void testDfsEnumStruct_EncodeDecode_Level1() throws NdrException {
            netdfs.DfsEnumStruct enumStruct = new netdfs.DfsEnumStruct();
            enumStruct.level = 1;
            enumStruct.e = new netdfs.DfsEnumArray1();
            ((netdfs.DfsEnumArray1) enumStruct.e).count = 1;
    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 enumeration structure containing the level and corresponding data
         */
        public static class DfsEnumStruct extends NdrObject {
    
            /**
             * Default constructor for DfsEnumStruct
             */
            public DfsEnumStruct() {
                // Default constructor
            }
    
            /**
             * Information level for the enumeration
             */
    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 enumeration structure containing the level and corresponding data
         */
        public static class DfsEnumStruct extends NdrObject {
    
            /**
             * Default constructor for DfsEnumStruct
             */
            public DfsEnumStruct() {
                // Default constructor
            }
    
            /**
             * Information level for the enumeration
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java

         *
         * @param server the server name to enumerate DFS roots from
         */
        public MsrpcDfsRootEnum(final String server) {
            super(server, 200, 0xFFFF, new netdfs.DfsEnumStruct(), new NdrLong(0));
            this.info.level = this.level;
            this.info.e = new netdfs.DfsEnumArray200();
            this.ptype = 0;
            this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java

         *
         * @param server the server name to enumerate DFS roots from
         */
        public MsrpcDfsRootEnum(final String server) {
            super(server, 200, 0xFFFF, new netdfs.DfsEnumStruct(), new NdrLong(0));
            info.level = level;
            info.e = new netdfs.DfsEnumArray200();
            ptype = 0;
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/MsrpcDfsRootEnumTest.java

        }
    
        // Helper method to set DfsEnumArray using reflection
        private void setDfsEnumArray(MsrpcDfsRootEnum target, netdfs.DfsEnumArray200 array) throws Exception {
            Field eField = netdfs.DfsEnumStruct.class.getDeclaredField("e");
            eField.setAccessible(true);
            eField.set(target.info, 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)
Back to top