Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DfsInfo300 (0.04 sec)

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

            netdfs.DfsInfo300 decodedInfo300 = new netdfs.DfsInfo300();
            decodedInfo300.decode(src);
    
            assertEquals(info300.flags, decodedInfo300.flags);
            assertEquals(info300.dfs_name, decodedInfo300.dfs_name);
        }
    
        @Test
        void testDfsInfo300_EncodeDecode_NullDfsName() throws NdrException {
            netdfs.DfsInfo300 info300 = new netdfs.DfsInfo300();
    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/dcerpc/msrpc/netdfs.idl

    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo200 *s;
    	} DfsEnumArray200;
    
    	typedef struct {
    		uint32_t flags;
    		[string] wchar_t *dfs_name;
    	} DfsInfo300;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo300 *s;
    	} DfsEnumArray300;
    
    	typedef union {
    		[case(1)] DfsEnumArray1 *info1;
    		[case(3)] DfsEnumArray3 *info3;
    		[case(200)] DfsEnumArray200 *info200;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo200 *s;
    	} DfsEnumArray200;
    
    	typedef struct {
    		uint32_t flags;
    		[string] wchar_t *dfs_name;
    	} DfsInfo300;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo300 *s;
    	} DfsEnumArray300;
    
    	typedef union {
    		[case(1)] DfsEnumArray1 *info1;
    		[case(3)] DfsEnumArray3 *info3;
    		[case(200)] DfsEnumArray200 *info200;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

            }
        }
    
        /**
         * DFS information level 300 structure for extended DFS information
         */
        public static class DfsInfo300 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo300
             */
            public DfsInfo300() {
                // Default constructor
            }
    
            /**
             * DFS flags
             */
            public int flags;
            /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

            }
        }
    
        /**
         * DFS information level 300 structure for extended DFS information
         */
        public static class DfsInfo300 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo300
             */
            public DfsInfo300() {
                // Default constructor
            }
    
            /**
             * DFS flags
             */
            public int flags;
            /**
    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