Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getNegotiateResponse (0.2 sec)

  1. 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();
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  2. 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.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
  3. 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();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  4. 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
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  5. 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 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top