Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for native (0.48 sec)

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

                ",capabilities=" + capabilities +
                ",accountName=" + accountName +
                ",primaryDomain=" + primaryDomain +
                ",NATIVE_OS=" + session.transport.NATIVE_OS +
                ",NATIVE_LANMAN=" + session.transport.NATIVE_LANMAN + "]" );
            return result;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/NetbiosAddress.java

         */
        boolean isInConflict ( CIFSContext tc ) throws UnknownHostException;
    
    
        /**
         * Determines if this address is active.
         * 
         * @param tc
         *            context to use
         * @return whether this address is active
         *
         * @throws UnknownHostException
         *             if the host cannot be resolved to find out.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DfsImpl.java

                    }
                    ce.map.put(DC_ENTRY, NEGATIVE_ENTRY);
                    if ( tf.getConfig().isDfsStrictView() && ioe instanceof SmbAuthException ) {
                        throw (SmbAuthException) ioe;
                    }
                }
                ce.map.put(DC_ENTRY, NEGATIVE_ENTRY);
                this.dcCache.put(dom, ce);
                return null;
            }
    
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/DosError.java

            "A duplicate name exists on the network.",
            "The network name cannot be found.",
            "ERRnomoreconn.",
            "The file exists.",
            "The parameter is incorrect.",
            "Too many Uids active on this session.",
            "The Uid is not known as a valid user identifier on this session.",
            "The pipe has been ended.",
            "The filename, directory name, or volume label syntax is incorrect.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/SessionServicePacket.java

        /**
         * 
         */
        public static final int POSITIVE_SESSION_RESPONSE = 0x82;
    
        /**
         * 
         */
        public static final int NEGATIVE_SESSION_RESPONSE = 0x83;
        static final int SESSION_RETARGET_RESPONSE = 0x84;
        static final int SESSION_KEEP_ALIVE = 0x85;
    
        static final int MAX_MESSAGE_SIZE = 0x0001FFFF;
        static final int HEADER_LENGTH = 4;
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbException.java

    public class SmbException extends IOException implements NtStatus, DosError, WinError {
    
        static String getMessageByCode( int errcode ) {
            /* Note there's a signedness error here because 0xC0000000 based values are
             * negative so it with NT_STATUS_SUCCESS (0) the binary search will not be
             * performed properly. The effect is that the code at index 1 is never found
             * (NT_STATUS_UNSUCCESSFUL). So here we factor out NT_STATUS_SUCCESS
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

         * 5 = SMB_COM_OPEN_ANDX
         * 6 = SMB_COM_RENAME
         * 7 = SMB_COM_TRANSACTION
         * 8 = SMB_COM_QUERY_INFORMATION
         */
    
        /* All batch limits are single batch only until further notice
         */
    
        private static byte[] batchLimits = {
            1, 1, 1, 1, 1, 1, 1, 1, 0
        };
    
        static {
            String s;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                        + this.accountName + ",primaryDomain=" + this.primaryDomain + ",NATIVE_OS=" + getConfig().getNativeOs() + ",NATIVE_LANMAN="
                        + getConfig().getNativeLanman() + "]");
            return result;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 17 10:20:23 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int CONN_TIMEOUT =
                Config.getInt( "jcifs.smb1.smb.client.connTimeout", DEFAULT_CONN_TIMEOUT );
        static final String NATIVE_OS =
                Config.getProperty( "jcifs.smb1.smb.client.nativeOs", System.getProperty( "os.name" ));
        static final String NATIVE_LANMAN =
                Config.getProperty( "jcifs.smb1.smb.client.nativeLanMan", "jCIFS" );
        static final int VC_NUMBER = 1;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java

            if (extendedSecurity) {
                System.arraycopy(buffer, bufferIndex, blob, 0, blob.length);
                bufferIndex += blob.length;
            }
            nativeOs = readString( buffer, bufferIndex );
            bufferIndex += stringWireLength( nativeOs, bufferIndex );
            nativeLanMan = readString( buffer, bufferIndex, start + byteCount, 255, useUnicode );
            bufferIndex += stringWireLength( nativeLanMan, bufferIndex );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.9K bytes
    - Viewed (0)
Back to top