Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Label (0.12 sec)

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

        }
    
    
        int writeResourceRecordWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            if ( this.recordName == this.questionName ) {
                dst[ dstIndex++ ] = (byte) 0xC0; // label string pointer to
                dst[ dstIndex++ ] = (byte) 0x0C; // questionName (offset 12)
            }
            else {
                dstIndex += this.recordName.writeWireFormat(dst, dstIndex);
            }
    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

        }
        int writeResourceRecordWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            if( recordName == questionName ) {
                dst[dstIndex++] = (byte)0xC0; // label string pointer to
                dst[dstIndex++] = (byte)0x0C; // questionName (offset 12)
            } else {
                dstIndex += recordName.writeWireFormat( dst, dstIndex );
            }
    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)
  3. src/main/java/jcifs/smb/NtStatus.java

            "Access is denied.", "The data area passed to a system call is too small.",
            "The filename, directory name, or volume label syntax is incorrect.", "The system cannot find the file specified.",
            "Cannot create a file when that file already exists.", "The handle is invalid.", "The specified path is invalid.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "More data is available.",
            "Access is denied.",
            "The data area passed to a system call is too small.",
            "The filename, directory name, or volume label syntax is incorrect.",
            "The system cannot find the file specified.",
            "Cannot create a file when that file already exists.",
            "The handle is invalid.",
            "The specified path is invalid.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
Back to top