Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeString (0.22 sec)

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

                dstIndex += ntHash.length;
        
                dstIndex += writeString( accountName, dst, dstIndex );
                dstIndex += writeString( primaryDomain, dst, dstIndex );
            }
            dstIndex += writeString( session.transport.NATIVE_OS, dst, dstIndex );
            dstIndex += writeString( session.transport.NATIVE_LANMAN, dst, dstIndex );
    
            return dstIndex - start;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                dstIndex += this.ntHash.length;
    
                dstIndex += writeString(this.accountName, dst, dstIndex);
                dstIndex += writeString(this.primaryDomain, dst, dstIndex);
            }
            dstIndex += writeString(getConfig().getNativeOs(), dst, dstIndex);
            dstIndex += writeString(getConfig().getNativeLanman(), dst, dstIndex);
    
            return dstIndex - start;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 17 10:20:23 GMT 2019
    - 8.8K bytes
    - Viewed (0)
Back to top