- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getTransportPool (0.12 sec)
-
src/main/java/jcifs/http/NtlmServlet.java
} NtlmPasswordAuthentication ntlm; if ( msg.startsWith("NTLM ") ) { byte[] challenge = getTransportContext().getTransportPool().getChallenge(getTransportContext(), dc); ntlm = NtlmSsp.authenticate(getTransportContext(), request, response, challenge); if ( ntlm == null ) return; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
} @Override public BufferCache getBufferCache () { return this.delegate.getBufferCache(); } @Override public SmbTransportPool getTransportPool () { return this.delegate.getTransportPool(); } @Override public boolean close () throws CIFSException { return this.delegate.close(); }
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/test/java/jcifs/tests/OplockTests.java
@Test public void testOpenOplocked () throws UnknownHostException, IOException { CIFSContext c = getContext(); c = withTestNTLMCredentials(c); try ( SmbTransportInternal trans = c.getTransportPool().getSmbTransport(c, getTestServer(), 0, false, true) .unwrap(SmbTransportInternal.class); SmbSession sess = trans.unwrap(SmbTransportInternal.class).getSmbSession(c, getTestServer(), null);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
/** * @return the buffer cache */ BufferCache getBufferCache (); /** * @return the transport pool */ SmbTransportPool getTransportPool (); /** * @return the DFS instance for this context */ DfsResolver getDfs (); /** * @return the SID resolver for this context */
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/context/BaseContext.java
} catch ( MalformedURLException e ) { throw new CIFSException("Invalid URL " + url, e); } } @Override public SmbTransportPool getTransportPool () { return this.transportPool; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getConfig() */ @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)