Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DfsInfo3 (1.44 sec)

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

            assertNull(decodedStorageInfo.server_name);
            assertNull(decodedStorageInfo.share_name);
        }
    
        @Test
        void testDfsInfo3_EncodeDecode() throws NdrException {
            netdfs.DfsInfo3 info3 = new netdfs.DfsInfo3();
            info3.path = "dfs_path";
            info3.comment = "dfs_comment";
            info3.state = netdfs.DFS_VOLUME_FLAVOR_AD_BLOB;
            info3.num_stores = 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/dcerpc/msrpc/netdfs.idl

    	typedef struct {
    		[string] wchar_t *path;
    		[string] wchar_t *comment;
    		uint32_t state;
    		uint32_t num_stores;
    		[size_is(num_stores)] DfsStorageInfo *stores;
    	} DfsInfo3;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo3 *s;
    	} DfsEnumArray3;
    
    	typedef struct {
    		[string] wchar_t *dfs_name;
    	} DfsInfo200;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo200 *s;
    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.java

            }
        }
    
        /**
         * DFS information level 3 structure containing detailed DFS entry information
         */
        public static class DfsInfo3 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo3
             */
            public DfsInfo3() {
                // Default constructor
            }
    
            /**
             * DFS path
             */
            public String 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)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    	typedef struct {
    		[string] wchar_t *path;
    		[string] wchar_t *comment;
    		uint32_t state;
    		uint32_t num_stores;
    		[size_is(num_stores)] DfsStorageInfo *stores;
    	} DfsInfo3;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo3 *s;
    	} DfsEnumArray3;
    
    	typedef struct {
    		[string] wchar_t *dfs_name;
    	} DfsInfo200;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo200 *s;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

            }
        }
    
        /**
         * DFS information level 3 structure containing detailed DFS entry information
         */
        public static class DfsInfo3 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo3
             */
            public DfsInfo3() {
                // Default constructor
            }
    
            /**
             * DFS path
             */
            public String 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