Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DfsInfo200 (0.07 sec)

  1. src/test/java/jcifs/MsrpcDfsRootEnumTest.java

            arrayWithNulls.count = 2;
            arrayWithNulls.s = new netdfs.DfsInfo200[2];
    
            netdfs.DfsInfo200 entry1 = new netdfs.DfsInfo200();
            entry1.dfs_name = null;
            arrayWithNulls.s[0] = entry1;
    
            netdfs.DfsInfo200 entry2 = new netdfs.DfsInfo200();
            entry2.dfs_name = "valid_share";
            arrayWithNulls.s[1] = entry2;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            NdrBuffer src = new NdrBuffer(encodeBuffer, 0);
            netdfs.DfsInfo200 decodedInfo200 = new netdfs.DfsInfo200();
            decodedInfo200.decode(src);
    
            assertEquals(info200.dfs_name, decodedInfo200.dfs_name);
        }
    
        @Test
        void testDfsInfo200_EncodeDecode_NullDfsName() throws NdrException {
            netdfs.DfsInfo200 info200 = new netdfs.DfsInfo200();
            info200.dfs_name = 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)
  3. src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java

            DfsEnumArray200 dfsEnumArray = new DfsEnumArray200();
            dfsEnumArray.count = 2;
            dfsEnumArray.s = new DfsInfo200[2];
            dfsEnumArray.s[0] = new DfsInfo200();
            dfsEnumArray.s[0].dfs_name = "\\domain\share1";
            dfsEnumArray.s[1] = new DfsInfo200();
            dfsEnumArray.s[1].dfs_name = "\\domain\share2";
    
            // Manually set the DfsEnumArray200 to the info struct
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

            }
        }
    
        /**
         * DFS information level 200 structure for extended DFS information
         */
        public static class DfsInfo200 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo200
             */
            public DfsInfo200() {
                // Default constructor
            }
    
            /**
             * The DFS name
             */
            public String dfs_name;
    
    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.idl

    	} 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;
    	} DfsEnumArray200;
    
    	typedef struct {
    		uint32_t flags;
    		[string] wchar_t *dfs_name;
    	} DfsInfo300;
    
    	typedef struct {
    		uint32_t count;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    	} 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;
    	} DfsEnumArray200;
    
    	typedef struct {
    		uint32_t flags;
    		[string] wchar_t *dfs_name;
    	} DfsInfo300;
    
    	typedef struct {
    		uint32_t count;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

            }
        }
    
        /**
         * DFS information level 200 structure for extended DFS information
         */
        public static class DfsInfo200 extends NdrObject {
    
            /**
             * Default constructor for DfsInfo200
             */
            public DfsInfo200() {
                // Default constructor
            }
    
            /**
             * The DFS name
             */
            public String dfs_name;
    
    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