- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getDfsReferrals (0.08 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/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)