- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getNegotiateResponse (0.4 sec)
-
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
return transport.getNegotiateResponse().getSendBufferSize(); } } @Override public int getReceiveBufferSize () throws SmbException { try ( SmbSessionImpl session = this.treeConnection.getSession(); SmbTransportImpl transport = session.getTransport() ) { return transport.getNegotiateResponse().getReceiveBufferSize(); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
continue; } if ( !forceSigning && !tc.getConfig().isSigningEnforced() && conn.isSigningEnforced() && !conn.getNegotiateResponse().isSigningRequired() ) { // if signing is not enforced, dont use connections that have signing enforced // for purposes that dont require it.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
// we are connected, so we know return isDfs(); } try ( SmbTransportImpl transport = this.session.getTransport() ) { return transport.getNegotiateResponse().isDFSSupported(); } } /** * @return the session this tree is connected in */ public SmbSessionImpl getSession () { return this.session.acquire();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
if ( cur != null ) { return false; } else if ( this.transport.isSigningEnforced() ) { return true; } return this.transport.getNegotiateResponse().isSigningNegotiated(); } /** * @param digest * the digest to set * @throws SmbException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} @Override public boolean hasCapability ( int cap ) throws SmbException { return getNegotiateResponse().haveCapabilitiy(cap); } /** * @return the negotiated * @throws SmbException */ SmbNegotiationResponse getNegotiateResponse () throws SmbException { try { if ( this.negotiated == null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)