Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for country (0.15 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                    Config.getInt( "jcifs.smb1.netbios.cachePolicy", 60 * 10 ) * 60; /* 10 hours */
    
        static NbtAddress[] dc_list = null;
        static long dc_list_expiration;
        static int dc_list_counter;
    
        private static NtlmChallenge interrogate( NbtAddress addr ) throws SmbException {
            UniAddress dc = new UniAddress( addr );
            SmbTransport trans = SmbTransport.getSmbTransport( dc, 0 );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                        this.session.release();
                    }
                }
            }
            else if ( usage < 0 ) {
                log.error("Usage count dropped below zero " + this);
                dumpResource();
                throw new RuntimeCIFSException("Usage count dropped below zero");
            }
        }
    
    
        /**
         * @param stackTrace
         * @return
         */
    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)
  3. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

                }
            }
        }
    
        public static class ShareInfoCtr0 extends NdrObject {
    
            public int count;
            public ShareInfo0[] array;
    
    
            @Override
            public void encode ( NdrBuffer _dst ) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_long(this.count);
                _dst.enc_ndr_referent(this.array, 1);
    
                if ( this.array != null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 19.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

    import java.util.Enumeration;
    
    import jcifs.smb1.Config;
    import jcifs.smb1.util.Hexdump;
    
    abstract class SmbComTransaction extends ServerMessageBlock implements Enumeration {
    
        private static final int DEFAULT_MAX_DATA_COUNT =
                Config.getInt( "jcifs.smb1.smb.client.transaction_buf_size",
                        SmbComTransaction.TRANSACTION_BUF_SIZE ) - 512;
    
        // relative to headerStart
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeConnection.java

                        }
                    }
                }
            }
            else if ( usage < 0 ) {
                log.error("Usage count dropped below zero " + this);
                throw new RuntimeCIFSException("Usage count dropped below zero");
            }
        }
    
    
        protected void checkRelease () {
            if ( isConnected() && this.usageCount.get() != 0 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/PacLogonInfo.java

                PacUnicodeString homeDirectoryString = pacStream.readUnicodeString();
                PacUnicodeString homeDriveString = pacStream.readUnicodeString();
    
                // Some counts
                this.logonCount = pacStream.readShort();
                this.badPasswordCount = pacStream.readShort();
    
                // IDs for user
                SID userId = pacStream.readId();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  7. LICENSE

     Everyone is permitted to copy and distribute verbatim copies
     of this license document, but changing it is not allowed.
    
    (This is the first released version of the Lesser GPL.  It also counts
     as the successor of the GNU Library Public License, version 2, hence
     the version number 2.1.)
    
                                Preamble
    
      The licenses for most software are designed to take away your
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
Back to top