Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for requested (0.22 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

         */
        @Override
        public void setupRequest ( CommonServerMessageBlock request ) {
    
            if ( ! ( request instanceof ServerMessageBlock ) ) {
                return;
            }
    
            ServerMessageBlock req = (ServerMessageBlock) request;
    
            req.addFlags2(this.negotiatedFlags2);
            req.setUseUnicode(req.isForceUnicode() || this.useUnicode);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/NtlmTest.java

                assertEquals(suppliedWorkstation, parsed.getSuppliedWorkstation());
            }
        }
    
    
        @Test
        public void testParsingType2Target () throws IOException {
            int flags = NtlmFlags.NTLMSSP_REQUEST_TARGET;
            String target = "TARGET";
            byte[] challenge = new byte[] {
                0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8
            };
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/SessionServicePacket.java

    import java.io.InputStream;
    
    
    /**
     *
     */
    public abstract class SessionServicePacket {
    
        // session service packet types
        static final int SESSION_MESSAGE = 0x00;
        static final int SESSION_REQUEST = 0x81;
    
        /**
         * 
         */
        public static final int POSITIVE_SESSION_RESPONSE = 0x82;
    
        /**
         * 
         */
        public static final int NEGATIVE_SESSION_RESPONSE = 0x83;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            reconnect();
            if (message == null) {
                message = new Type1Message();
                if (LM_COMPATIBILITY > 2) {
                    message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true);
                }
            } else {
                String domain = DEFAULT_DOMAIN;
                String user = Type3Message.getDefaultUser();
                String password = Type3Message.getDefaultPassword();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * 
         * @return maxmimum number of elements to request in a list request
         */
        int getListCount ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.listSize</tt> (int, default 65435)
         * 
         * @return maximum data size for list/info requests (known overhead is subtracted)
         */
        int getListSize ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * 
     * 2) IP Address, NetBIOS name, nodeType, groupName - If however a
     * legal NetBIOS name string is used a name query request will retreive
     * the IP, node type, and whether or not this NbtAddress represents a
     * group name. This degree of state can be obtained with a Name Query
     * Request or Node Status Request.
     * 
     * 3) All - The NbtAddress will be populated with all state such as mac
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpFilter.java

         * 
         * @param req
         *            The servlet request
         * @param resp
         *            The servlet response
         * @param skipAuthentication
         *            If true the negotiation is only done if it is
         *            initiated by the client (MSIE post requests after successful NTLM SSP
         *            authentication). If false and the user has not been authenticated yet
    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)
  8. src/main/java/jcifs/smb/DosError.java

            "Bad password.", "The system cannot find the path specified.", "reserved",
            "The client does not have the necessary access rights to perform the requested function.", "Access is denied.",
            "The TID specified was invalid.", "The handle is invalid.", "The network name cannot be found.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 4.8K bytes
    - Viewed (1)
  9. src/main/java/jcifs/smb/NetServerEnumIterator.java

            }
    
            if ( this.workgroup && this.response.getStatus() == WinError.ERROR_MORE_DATA ) {
                this.request.reset(0, this.response.getLastName());
                this.response.reset();
                this.request.setSubCommand(SmbComTransaction.NET_SERVER_ENUM3);
                this.treeHandle.send(this.request, this.response);
                checkStatus();
                this.ridx = 0;
                return advance();
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        */ 
        public static final int NTLMSSP_NEGOTIATE_NTLM2 = 0x00080000;
    
        public static final int NTLMSSP_REQUEST_INIT_RESPONSE = 0x00100000;
    
        public static final int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000;
    
        public static final int NTLMSSP_REQUEST_NON_NT_SESSION_KEY = 0x00400000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that it is
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.3K bytes
    - Viewed (1)
Back to top