Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for native (0.13 sec)

  1. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java

        /**
         * @return the nativeLanMan
         */
        public final String getNativeLanMan () {
            return this.nativeLanMan;
        }
    
    
        /**
         * @return the nativeOs
         */
        public final String getNativeOs () {
            return this.nativeOs;
        }
    
    
        /**
         * @return the primaryDomain
         */
        public final String getPrimaryDomain () {
            return this.primaryDomain;
        }
    
    
    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)
Back to top