Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for paragraphs (0.2 sec)

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

                                " but readBytesWireFormat returned " + n );
                    }
                }
                // Don't think we can rely on n being correct here. Must use byteCount.
                // Last paragraph of section 3.13.3 eludes to this.
    
                bufferIndex += byteCount;
            }
    
            length = bufferIndex - start;
            return length;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

                    }
                }
                // Don't think we can rely on n being correct here. Must use byteCount.
                // Last paragraph of section 3.13.3 eludes to this.
    
                bufferIndex += this.byteCount;
            }
    
            int len = bufferIndex - start;
            this.length = len;
    
            if ( isRetainPayload() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
Back to top