Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for getDest (0.17 sec)

  1. src/main/java/jcifs/util/transport/Request.java

        void setRequestCredits ( int credits );
    
    
        /**
         * @return whether this is a cancel request
         */
        boolean isCancel ();
    
    
        /**
         * @return chained request
         */
        Request getNext ();
    
    
        /**
         * @return the response for this request
         */
        Response getResponse ();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Crypto.java

        }
    
    
        /**
         * @param key
         *            7 or 8 byte DES key
         * @return DES cipher in encryption mode
         */
        public static Cipher getDES ( byte[] key ) {
            if ( key.length == 7 ) {
                return getDES(des7to8(key));
            }
    
            try {
                Cipher c = Cipher.getInstance("DES/ECB/NoPadding");
                c.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(key, "DES"));
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                Response curResp = response;
                Request curReq = request;
                while ( curResp != null ) {
                    this.response_map.remove(curResp.getMid());
                    Request next = curReq.getNext();
                    if ( next != null ) {
                        curReq = next;
                        curResp = next.getResponse();
                    }
                    else {
                        break;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Handler.java

        }
        public URLConnection openConnection( URL u ) throws IOException {
            return new SmbFile( u );
        }
        protected void parseURL( URL u, String spec, int start, int limit ) {
            String host = u.getHost();
            String path, ref;
            int port;
    
            if( spec.equals( "smb1://" )) {
                spec = "smb1:////";
                limit += 2;
            } else if( spec.startsWith( "smb1://" ) == false &&
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java

         */
        @Override
        public boolean isResponseAsync () {
            return false;
        }
    
    
        @Override
        public ServerMessageBlock2Request<?> getNext () {
            return null;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#getOverrideTimeout()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         *
         * @see jcifs.internal.CommonServerMessageBlockResponse#getNextResponse()
         */
        @Override
        public CommonServerMessageBlockResponse getNextResponse () {
            return (CommonServerMessageBlockResponse) getNext();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockResponse#prepare(jcifs.internal.CommonServerMessageBlockRequest)
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                    wildcard = dff.wildcard;
                searchAttributes = dff.attributes;
            }
            SmbResourceLocator locator = parent.getLocator();
            if ( locator.getURL().getHost().isEmpty() ) {
                // smb:// -> enumerate servers through browsing
                Address addr;
                try {
                    addr = locator.getAddress();
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmUtil.java

            byte[] key7 = new byte[7];
            byte[] e8 = new byte[8];
    
            for ( int i = 0; i < key.length / 7; i++ ) {
                System.arraycopy(key, i * 7, key7, 0, 7);
                Cipher des = Crypto.getDES(key7);
                des.update(data, 0, data.length, e8);
                System.arraycopy(e8, 0, e, i * 8, 8);
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 9.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/DfsTest.java

    
        /**
         * @return
         * @throws URISyntaxException
         */
        private boolean isStandalone () throws URISyntaxException {
            URI uri = new URI(getTestShareURL());
            return uri.getHost().equals(getTestServer());
        }
    
    
        @Test
        public void resolveShare () throws CIFSException, URISyntaxException {
            String dfsTestSharePath = getDFSTestSharePath();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

         * @return request was handled asynchronously
         */
        boolean isResponseAsync ();
    
    
        /**
         * 
         * @return next chained message
         */
        @Override
        CommonServerMessageBlockRequest getNext ();
    
    
        /**
         * 
         * @return the following message
         */
        CommonServerMessageBlockRequest split ();
    
    
        /**
         * @return the size of this message
         */
        int size ();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
Back to top