- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 479 for getDfs (0.3 sec)
-
src/main/java/jcifs/smb/SmbTransportImpl.java
((DfsReferralDataImpl) dr).fixupDomain(req.getDomain()); } if (log.isDebugEnabled()) { log.debug("Got referral " + dr); } getContext().getDfs().cache(getContext(), path, dr); throw new DfsReferral(dr); } <T extends CommonServerMessageBlockResponse> T send(final CommonServerMessageBlockRequest request, final T response)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
* 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 */ public static String getSyntax() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
* 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 */ public static String getSyntax() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
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) -
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)