- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getDfsReferrals (0.1 sec)
-
src/main/java/jcifs/smb1/smb1/Dfs.java
SmbTransport trans = SmbTransport.getSmbTransport(addr, 0); CacheEntry entry = new CacheEntry(Dfs.TTL * 10L); DfsReferral dr = trans.getDfsReferrals(auth, "", 0); if (dr != null) { DfsReferral start = dr; do { String domain = dr.server.toLowerCase();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
* @param name * @param targetHost * @param targetDomain * @param rn * @return dfs referral * @throws SmbException * @throws CIFSException */ DfsReferralData getDfsReferrals ( CIFSContext ctx, String name, String targetHost, String targetDomain, int rn ) throws CIFSException; /** * @return whether signatures are supported but not required * @throws SmbException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
case NtStatus.NT_STATUS_PATH_NOT_COVERED: if( req.auth == null ) { throw new SmbException( resp.errorCode, null ); } DfsReferral dr = getDfsReferrals(req.auth, req.path, 1); if (dr == null) throw new SmbException(resp.errorCode, null); SmbFile.dfs.insert(req.path, dr); throw dr;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
SmbTransportInternal trans = dc != null ? dc.unwrap(SmbTransportInternal.class) : null; if ( trans != null ) { // get domain referral initial = trans.getDfsReferrals(tf.withAnonymousCredentials(), "", trans.getRemoteHostName(), authDomain, 0); } if ( initial != null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
DfsReferralData dr = null; if ( !getContext().getConfig().isDfsDisabled() ) { try { dr = getDfsReferrals(getContext(), path, req.getServer(), req.getDomain(), 1); } catch ( CIFSException e ) { throw new SmbException("Failed to get DFS referral", e); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)