Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for netdfs (0.65 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/netdfs.idl

    [
    	uuid(4fc742e0-4a10-11cf-8273-00aa004ae673),
    	version(3.0)
    ]
    interface netdfs
    {
    	import "../rpc.idl";
    
    	const uint32_t DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
    	const uint32_t DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
    
    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

    /**
     * DCE/RPC interface for Distributed File System (DFS) operations.
     * Provides structures and methods for DFS management and enumeration.
     */
    public class netdfs {
    
        /**
         * Default constructor for netdfs
         */
        public netdfs() {
            // Default constructor
        }
    
        /**
         * Gets the DCE/RPC syntax identifier for the DFS interface
         * @return the syntax identifier string
         */
    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/smb1/dcerpc/msrpc/netdfs.idl

    [
    	uuid(4fc742e0-4a10-11cf-8273-00aa004ae673),
    	version(3.0)
    ]
    interface netdfs
    {
    	import "../rpc.idl";
    
    	const uint32_t DFS_VOLUME_FLAVOR_STANDALONE = 0x100;
    	const uint32_t DFS_VOLUME_FLAVOR_AD_BLOB = 0x200;
    
    	const uint32_t DFS_STORAGE_STATE_OFFLINE = 0x0001;
    	const uint32_t DFS_STORAGE_STATE_ONLINE = 0x0002;
    	const uint32_t DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
    	typedef struct {
    		[string] wchar_t *entry_path;
    	} DfsInfo1;
    
    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/dcerpc/msrpc/netdfs.java

     * DCE/RPC interface for Distributed File System (DFS) operations.
     * Provides structures and methods for DFS management and enumeration.
     */
    @SuppressWarnings("all")
    public class netdfs {
    
        /**
         * Default constructor for netdfs
         */
        public netdfs() {
            // Default constructor
        }
    
        /**
         * Gets the DCE/RPC syntax identifier for the DFS interface
         * @return the syntax identifier string
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/MsrpcDfsRootEnumTest.java

            // Create array with null name entries
            netdfs.DfsEnumArray200 arrayWithNulls = new netdfs.DfsEnumArray200();
            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";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            int prefmaxlen = 100;
            netdfs.DfsEnumStruct info = new netdfs.DfsEnumStruct();
            info.level = 1;
            info.e = new netdfs.DfsEnumArray1();
            ((netdfs.DfsEnumArray1) info.e).count = 1;
            ((netdfs.DfsEnumArray1) info.e).s = new netdfs.DfsInfo1[1];
            ((netdfs.DfsEnumArray1) info.e).s[0] = new netdfs.DfsInfo1();
            ((netdfs.DfsEnumArray1) info.e).s[0].entry_path = "encoded_path";
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java

     * roots on a server using the NetDFS RPC interface.
     */
    public class MsrpcDfsRootEnum extends netdfs.NetrDfsEnumEx {
    
        /**
         * Creates a new DFS root enumeration request for the specified server.
         *
         * @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));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java

     * roots on a server using the NetDFS RPC interface.
     */
    public class MsrpcDfsRootEnum extends netdfs.NetrDfsEnumEx {
    
        /**
         * Creates a new DFS root enumeration request for the specified server.
         *
         * @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));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

            INTERFACES = new HashMap();
            INTERFACES.put("srvsvc", srvsvc.getSyntax());
            INTERFACES.put("lsarpc", lsarpc.getSyntax());
            INTERFACES.put("samr", samr.getSyntax());
            INTERFACES.put("netdfs", netdfs.getSyntax());
        }
    
        /**
         * Add an interface to the registry.
         *
         * @param name the interface name
         * @param syntax the interface syntax (UUID:version)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/DcerpcBinding.java

        static {
            INTERFACES.put("srvsvc", srvsvc.getSyntax());
            INTERFACES.put("lsarpc", lsarpc.getSyntax());
            INTERFACES.put("samr", samr.getSyntax());
            INTERFACES.put("netdfs", netdfs.getSyntax());
            INTERFACES.put("netlogon", "12345678-1234-abcd-ef00-01234567cffb:1.0");
            INTERFACES.put("wkssvc", "6BFFD098-A112-3610-9833-46C3F87E345A:1.0");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
Back to top