Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for good (0.18 sec)

  1. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

        void ensureOpen( int timeout ) throws IOException {
            closeTimeout = 0;
            if( SO_TIMEOUT != 0 ) {
                closeTimeout = Math.max( SO_TIMEOUT, timeout );
            }
            // If socket is still good, the new closeTimeout will
            // be ignored; see tryClose comment.
            if( socket == null ) {
                socket = new DatagramSocket( lport, laddr );
    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)
  2. src/main/java/jcifs/smb/Kerb5Authenticator.java

            if ( host.indexOf('.') < 0 && host.toUpperCase(Locale.ROOT).equals(host) ) {
                // this is not too good, probably should better pass the address and check that it is a netbios one.
                // While we could look up the domain controller/KDC we cannot really make the java kerberos implementation
                // use a KDC of our choice.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                            sbuf[4] == (byte)0xFF &&
                            sbuf[5] == (byte)'S' &&
                            sbuf[6] == (byte)'M' &&
                            sbuf[7] == (byte)'B') {
                    break; /* all good */
                }
                                            /* out of phase maybe? */
                              /* inch forward 1 byte and try again */
                for (int i = 0; i < 35; i++) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            if ( this.transportContext.getConfig().getNetbiosSoTimeout() != 0 ) {
                this.closeTimeout = Math.max(this.transportContext.getConfig().getNetbiosSoTimeout(), timeout);
            }
            // If socket is still good, the new closeTimeout will
            // be ignored; see tryClose comment.
            if ( this.socket == null ) {
                this.socket = new DatagramSocket(this.lport, this.laddr);
    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/smb1/smb1/SmbFile.java

            if( type == 0 ) {
                if( getUncPath0().length() > 1 ) {
                    type = TYPE_FILESYSTEM;
                } else if( share != null ) {
                    // treeConnect good enough to test service type
                    connect0();
                    if( share.equals( "IPC$" )) {
                        type = TYPE_NAMED_PIPE;
                    } else if( tree.service.equals( "LPT1:" )) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

                        && this.sbuf[ 6 ] == (byte) 'M' && this.sbuf[ 7 ] == (byte) 'B' ) {
                    break; /* all good (SMB) */
                }
    
                /* out of phase maybe? */
                /* inch forward 1 byte and try again */
                for ( int i = 0; i < 35; i++ ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                    // referrals.
                    try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                        if ( this.fileLocator.getType() == TYPE_SHARE ) {
                            // treeConnect is good enough, but we need to do this after resolving DFS
                            try ( SmbTreeHandleImpl th2 = ensureTreeConnected() ) {}
                        }
                        else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  8. LICENSE

        table of data to be supplied by an application program that uses
        the facility, other than as an argument passed when the facility
        is invoked, then you must make a good faith effort to ensure that,
        in the event an application does not supply such function or
        table, the facility still operates, and performs whatever part of
        its purpose remains meaningful.
    
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/DES.java

    // ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    // OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
Back to top