Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for seit (0.38 sec)

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

                NegTokenTarg targ = (NegTokenTarg) spToken;
                if ( targ.getResult() == NegTokenTarg.ACCEPT_COMPLETED && this.mechContext.isEstablished() ) {
                    // server sent final token
                    verifyMechListMIC(targ.getMechanismListMIC());
                    if ( !this.disableMic || this.requireMic ) {
                        mechMIC = calculateMechListMIC();
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

             * response will not read a batched command and therefore
             * the 'received' member of the response object will not
             * be set to true indicating the send and sendTransaction
             * methods that the next part should be sent. This is a
             * very indirect and simple batching control mechanism.
             */
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    }
    
                    synchronized (LOCK) {
                        if (NbtAddress.isWINS( request.addr ) == false)
                            break;
                                        /* Message was sent to WINS but
                                         * failed to receive response.
                                         * Try a different WINS server.
                                         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    }
    
                    synchronized ( this.LOCK ) {
                        if ( isWINS(request.addr) == false )
                            break;
                        /*
                         * Message was sent to WINS but
                         * failed to receive response.
                         * Try a different WINS server.
                         */
                        if ( request.addr == getWINSAddress() )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

             * Looks like the failure case also is just reflecting back the signature we sent
             */
    
            /**
             * Maybe this is related:
             * 
             * If signing is not active, the SecuritySignature field of the SMB Header for all messages sent, except
             * the SMB_COM_SESSION_SETUP_ANDX Response (section 2.2.4.53.2), MUST be set to
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         */
        public static final int NTLMSSP_NEGOTIATE_ALWAYS_SIGN = 0x00008000;
    
        /**
         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a domain.
         */
        public static final int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000;
    
        /**
         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a server.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

        public boolean verifySignature ( byte[] buffer, int i, int size ) {
            // observed too that signatures on error responses are sometimes wrong??
            // Looks like the failure case also is just reflecting back the signature we sent
    
            // with SMB3's negotiation validation it's no longer possible to ignore this (on the validation response)
            // make sure that validation is performed in any case
            Smb2SigningDigest dgst = getDigest();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbSession.java

                    transport.log.println( "sessionSetup: accountName=" + auth.username + ",primaryDomain=" + auth.domain );
        
                /* We explicitly set uid to 0 here to prevent a new
                 * SMB_COM_SESSION_SETUP_ANDX from having it's uid set to an
                 * old value when the session is re-established. Otherwise a
                 * "The parameter is incorrect" error can occur.
                 */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        */
        public static final int NTLMSSP_NEGOTIATE_ALWAYS_SIGN = 0x00008000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that the 
        * target authentication realm is a domain.
        */
        public static final int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that the 
        * target authentication realm is a server.
        */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.3K bytes
    - Viewed (1)
  10. src/main/java/jcifs/netbios/NbtAddress.java

         * 
         * 1) IP Address - If a dot-quad IP string is used with getByName (or used
         * to create an NbtAddress internal to this netbios package), no query is
         * sent on the wire and the only state this object has is it's IP address
         * (but that's enough to connect to a host using *SMBSERVER for CallingName).
         * 
         * 2) IP Address, NetBIOS name, nodeType, groupName - If however a
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
Back to top