- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 54 for negotiator (0.08 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
} /** * Gets the negotiated send buffer size. * * @return negotiated send buffer size */ public int getNegotiatedSendBufferSize() { return this.snd_buf_size; } /** * Gets the negotiated multiplex count. * * @return negotiated multiplex count */ public int getNegotiatedMpxCount() { return this.maxMpxCount;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
void signingModes() throws Exception { // Enforced via constructor flag -> optional false, enforced true regardless of negotiation SmbTransportImpl enforced = new SmbTransportImpl(ctx, address, 445, null, 0, true); assertFalse(enforced.isSigningOptional()); assertTrue(enforced.isSigningEnforced()); // Negotiated required -> enforced true; negotiated enabled-only -> optional true
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
} /** * Gets the common capabilities negotiated between client and server. * * @return the common/negotiated capabilities */ public final int getCommonCapabilities() { return this.commonCapabilities; } /** * Gets the initial security blob for authentication negotiation. * * @return initial security blob */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
* @param skipAuthentication If true the negotiation is only done if it is * initiated by the client (MSIE post requests after successful NTLM SSP * authentication). If false and the user has not been authenticated yet * the client will be forced to send an authentication (server sends * HttpServletResponse.SC_UNAUTHORIZED). * @return True if the negotiation is complete, otherwise false
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
* @return True if the negotiation is complete, otherwise false * @throws IOException if an I/O error occurs * @throws ServletException if a servlet error occurs */ protected NtlmPasswordAuthentication negotiate(final HttpServletRequest req, final HttpServletResponse resp, final boolean skipAuthentication) throws IOException, ServletException { Address dc; String msg;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} private void negotiate(int port, final ServerMessageBlock resp) throws IOException { /* We cannot use Transport.sendrecv() yet because * the Transport thread is not setup until doConnect() * returns and we want to supress all communication * until we have properly negotiated. */ synchronized (sbuf) { if (port == 139) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
RdmaNegotiateResponse response = rdmaConnection.negotiate(request); if (!response.isSuccess()) { throw new IOException("RDMA negotiation failed: " + response.getStatus()); } // Update connection parameters based on negotiation credits.setCreditsGranted(response.getCreditsGranted());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
verify(transport).close(); } @Test @DisplayName("getServerTimeZoneOffset: SMB1 negotiate path multiplies minutes to millis") void getServerTimeZoneOffsetSmb1() throws Exception { // Uses concrete SMB1 negotiate response to exercise SMB1-specific branch // Build a concrete SMB1 negotiate response to expose ServerData fields jcifs.CIFSContext ctx = mock(jcifs.CIFSContext.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/PreauthIntegrityTest.java
void testPreauthHashThreadSafety() throws Exception { // Setup SMB3.1.1 negotiation when(negotiateResponse.getSelectedDialect()).thenReturn(DialectVersion.SMB311); when(negotiateResponse.getSelectedPreauthHash()).thenReturn(1); // SHA-512 setPrivateField(transport, "smb2", true); setPrivateField(transport, "negotiated", negotiateResponse); int threadCount = 10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0)