Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Present (0.16 sec)

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

         *
         * @see jcifs.smb.DirFileEntryEnumIteratorBase#fetchMore()
         */
        @Override
        protected boolean fetchMore () throws CIFSException {
            this.nextRequest.reset(this.response.getResumeKey(), this.response.getLastName());
            this.response.reset();
            try {
                getTreeHandle().send(this.nextRequest, this.response);
                return this.response.getStatus() != NtStatus.NT_STATUS_NO_MORE_FILES;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                case SessionServicePacket.NEGATIVE_SESSION_RESPONSE:
                    int errorCode = this.in.read() & 0xFF;
                    switch ( errorCode ) {
                    case NbtException.CALLED_NOT_PRESENT:
                    case NbtException.NOT_LISTENING_CALLED:
                        this.socket.close();
                        break;
                    default:
                        disconnect(true);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

                        String unc = "\\\\" + tconHostName + '\\' + this.share;
    
                        /*
                         * IBM iSeries doesn't like specifying a service. Always reset
                         * the service to whatever was determined in the constructor.
                         */
                        String svc = this.service0;
    
                        /*
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                if (getType() != TYPE_WORKGROUP) {
                    break;
                }
                req.subCommand = (byte)SmbComTransaction.NET_SERVER_ENUM3;
                req.reset(0, ((NetServerEnum2Response)resp).lastName);
                resp.reset();
            } while(more);
        }
        void doFindFirstNext( ArrayList list,
                    boolean files,
                    String wildcard,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  5. src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java

         */
        @Override
        public synchronized void sign ( byte[] data, int offset, int length, CommonServerMessageBlock request, CommonServerMessageBlock response ) {
            this.digest.reset();
    
            // zero out signature field
            int index = offset + SIGNATURE_OFFSET;
            for ( int i = 0; i < SIGNATURE_LENGTH; i++ )
                data[ index + i ] = 0;
    
            // set signed flag
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 4.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                            log.debug("sessionSetup: " + this.credentials);
                        }
    
                        /*
                         * 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
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top