Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for defaults (0.14 sec)

  1. src/main/java/jcifs/spnego/NegTokenTarg.java

                        ASN1OctetString mechanismListMIC = ASN1OctetString.getInstance(tagged, true);
                        setMechanismListMIC(mechanismListMIC.getOctets());
                        break;
                    default:
                        throw new IOException("Malformed token field.");
                    }
                }
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SigningDigest.java

                case 4:
                case 5:
                    macSigningKey = new byte[16];
                    auth.getUserSessionKey(transport.server.encryptionKey, macSigningKey, 0);
                    break;
                default:
                    macSigningKey = new byte[40];
                    auth.getUserSessionKey(transport.server.encryptionKey, macSigningKey, 0);
                    System.arraycopy(auth.getUnicodeHash(transport.server.encryptionKey),
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/NegTokenInit.java

                            ASN1OctetString mechanismListMIC = ASN1OctetString.getInstance(tagged, true);
                            setMechanismListMIC(mechanismListMIC.getOctets());
                            break;
                        default:
                            throw new IOException("Malformed token field.");
                        }
                    }
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

                    .unwrap(SmbTransportInternal.class) ) {
                if ( !tf.hasDefaultCredentials() ) {
                    trans.ensureConnected();
                    log.warn(
                        "Default credentials (jcifs.smb.client.username/password)" + " not specified. SMB signing may not work propertly."
                                + "  Skipping DC interrogation.");
                }
                else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

    interface SmbConstants {
    
        static final int DEFAULT_PORT = 445;
    
        static final int DEFAULT_MAX_MPX_COUNT = 10;
        static final int DEFAULT_RESPONSE_TIMEOUT = 30000;
        static final int DEFAULT_SO_TIMEOUT = 35000;
        static final int DEFAULT_RCV_BUF_SIZE = 60416;
        static final int DEFAULT_SND_BUF_SIZE = 16644;
        static final int DEFAULT_SSN_LIMIT = 250;
        static final int DEFAULT_CONN_TIMEOUT = 35000;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/https/Handler.java

     * capabilities to the default HTTPS handler.  This acts as a wrapper,
     * handling authentication and passing control to the underlying
     * stream handler.
     */
    public class Handler extends jcifs.smb1.http.Handler {
    
        /**
         * The default HTTPS port (<code>443</code>).
         */
        public static final int DEFAULT_HTTPS_PORT = 443;
    
        /**
         * Returns the default HTTPS port.
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtException.java

                        case UNSPECIFIED:
                            result += "Unspecified error";
                            break;
                        default:
                            result += "Unknown error code: " + errorCode;
                    }
                    break;
                default:
                    result += "unknown error class: " + errorClass;
            }
            return result;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServicePacket.java

                break;
            default:
                resultCodeString = "0x" + Hexdump.toHexString(this.resultCode, 1);
                break;
            }
            switch ( this.questionType ) {
            case NB:
                questionTypeString = "NB";
                break;
            case NBSTAT:
                questionTypeString = "NBSTAT";
                break;
            default:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  9. src/main/java/jcifs/Config.java

            SingletonContext.registerSmbURLHandler();
        }
    
    
        /**
         * Retrieve an <code>int</code>. If the key does not exist or
         * cannot be converted to an <code>int</code>, the provided default
         * argument will be returned.
         */
        public static int getInt ( Properties props, String key, int def ) {
            String s = props.getProperty(key);
            if ( s != null ) {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/Name.java

    import jcifs.smb1.Config;
    import jcifs.smb1.util.Hexdump;
    
    public class Name {
    
        private static final int TYPE_OFFSET = 31;
        private static final int SCOPE_OFFSET = 33;
        private static final String DEFAULT_SCOPE = Config.getProperty( "jcifs.smb1.netbios.scope" );
    
        static final String OEM_ENCODING =
                    Config.getProperty( "jcifs.smb1.encoding",
                            System.getProperty( "file.encoding" ));
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
Back to top