Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0x (0.13 sec)

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

            default:
                resultCodeString = "0x" + Hexdump.toHexString(this.resultCode, 1);
                break;
            }
            switch ( this.questionType ) {
            case NB:
                questionTypeString = "NB";
                break;
            case NBSTAT:
                questionTypeString = "NBSTAT";
                break;
            default:
                questionTypeString = "0x" + Hexdump.toHexString(this.questionType, 4);
    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

                    ",questionClass=" + ( questionClass == IN ? "IN" :
                                "0x" + Hexdump.toHexString( questionClass, 4 )) +
                    ",recordName=" + recordName +
                    ",recordType=" + recordTypeString +
                    ",recordClass=" + ( recordClass == IN ? "IN" :
                                "0x" + Hexdump.toHexString( recordClass, 4 )) +
                    ",ttl=" + ttl +
    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