Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dialed (0.15 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

                    r.received();
    
                    if ( r.getDialectRevision() == Smb2Constants.SMB2_DIALECT_ANY ) {
                        return negotiate2(r);
                    }
                    else if ( r.getDialectRevision() != Smb2Constants.SMB2_DIALECT_0202 ) {
                        throw new CIFSException("Server returned invalid dialect verison in multi protocol negotiation");
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         */
        private static boolean isWorkgroup ( SmbResource r ) {
            try {
                return r.getLocator().isWorkgroup();
            }
            catch ( CIFSException e ) {
                log.debug("Failed to check for workgroup", e);
                return false;
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.net.URLConnection#connect()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top