Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ends (0.12 sec)

  1. src/main/java/jcifs/netbios/NameServicePacket.java

            dstIndex += 2 + this.rDataLength;
            return dstIndex - start;
        }
    
    
        int readResourceRecordWireFormat ( byte[] src, int srcIndex ) {
            int start = srcIndex;
            int end;
    
            if ( ( src[ srcIndex ] & 0xC0 ) == 0xC0 ) {
                this.recordName = this.questionName; // label string pointer to questionName
                srcIndex += 2;
            }
            else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            end = srcIndex + rDataLength;
    /* Apparently readRDataWireFormat can return 0 if resultCode != 0 in
    which case this will look indefinitely. Putting this else clause around
    the loop might fix that. But I would need to see a capture to confirm.
    if (resultCode != 0) {
        srcIndex += rDataLength;
    } else {
    */
            for( addrIndex = 0; srcIndex < end; addrIndex++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
Back to top