- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 298 for getDfs (0.15 sec)
-
src/test/java/jcifs/tests/DfsTest.java
} @Test public void resolveDC () throws CIFSException { CIFSContext context = withAnonymousCredentials(); DfsResolver dfs = context.getDfs(); try ( SmbTransport dc = dfs.getDc(context, getTestDomain()) ) { Address addr = dc.getRemoteAddress(); String remoteHostName = dc.getRemoteHostName(); assertNotNull(addr);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
} @Override public Configuration getConfig () { return this.delegate.getConfig(); } @Override public DfsResolver getDfs () { return this.delegate.getDfs(); } @Override public Credentials getCredentials () { return this.delegate.getCredentials(); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
@Override public Configuration getConfig () { return this.config; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getDfs() */ @Override public DfsResolver getDfs () { return this.dfs; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getNameServiceClient() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 27 18:25:00 UTC 2022 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
/** * @return the transport pool */ SmbTransportPool getTransportPool (); /** * @return the DFS instance for this context */ DfsResolver getDfs (); /** * @return the SID resolver for this context */ SidResolver getSIDResolver (); /** * * @return the used credentials */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
if ( locator.getType() != SmbConstants.TYPE_SERVER ) throw new SmbException("The requested list operations is invalid: " + u.toString()); Set<FileEntry> set = new HashSet<>(); if ( tc.getDfs().isTrustedDomain(tc, locator.getServer()) ) { /* * The server name is actually the name of a trusted * domain. Add DFS roots to the list. */ try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
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 ( CommonServerMessageBlockRequest request, T response ) throws SmbException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K 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 Nov 03 00:10:13 UTC 2024 - 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.dcerpc.*; import jcifs.smb1.dcerpc.ndr.*; public class netdfs { public static String getSyntax() { return "4fc742e0-4a10-11cf-8273-00aa004ae673:3.0"; } public static final int DFS_VOLUME_FLAVOR_STANDALONE = 0x100; public static final int DFS_VOLUME_FLAVOR_AD_BLOB = 0x200; public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 15K bytes - Viewed (0)