@@ -266,23 +266,16 @@ impl fmt::Display for DnsType {
266
266
#[ packet]
267
267
pub struct Dns {
268
268
pub id : u16be ,
269
- #[ construct_with( u1) ]
270
- pub is_response : BooleanField ,
269
+ pub is_response : u1 ,
271
270
#[ construct_with( u4) ]
272
271
pub opcode : Opcode ,
273
- #[ construct_with( u1) ]
274
- pub is_authoriative : BooleanField ,
275
- #[ construct_with( u1) ]
276
- pub is_truncated : BooleanField ,
277
- #[ construct_with( u1) ]
278
- pub is_recursion_desirable : BooleanField ,
279
- #[ construct_with( u1) ]
280
- pub is_recursion_available : BooleanField ,
272
+ pub is_authoriative : u1 ,
273
+ pub is_truncated : u1 ,
274
+ pub is_recursion_desirable : u1 ,
275
+ pub is_recursion_available : u1 ,
281
276
pub zero_reserved : u1 ,
282
- #[ construct_with( u1) ]
283
- pub is_answer_authenticated : BooleanField ,
284
- #[ construct_with( u1) ]
285
- pub is_non_authenticated_data : BooleanField ,
277
+ pub is_answer_authenticated : u1 ,
278
+ pub is_non_authenticated_data : u1 ,
286
279
#[ construct_with( u4) ]
287
280
pub rcode : Retcode ,
288
281
pub query_count : u16be ,
@@ -349,51 +342,6 @@ fn additional_length(packet: &DnsPacket) -> usize {
349
342
length
350
343
}
351
344
352
- #[ derive( Clone , Copy , Debug , Eq , Hash , PartialEq ) ]
353
- pub enum BooleanField {
354
- True ,
355
- False ,
356
- }
357
-
358
- impl PrimitiveValues for BooleanField {
359
- type T = ( u8 , ) ;
360
- fn to_primitive_values ( & self ) -> ( u8 , ) {
361
- match self {
362
- BooleanField :: True => ( 1 , ) ,
363
- BooleanField :: False => ( 0 , ) ,
364
- }
365
- }
366
- }
367
-
368
- impl BooleanField {
369
- pub fn new ( value : u8 ) -> Self {
370
- match value {
371
- 1 => Self :: True ,
372
- 0 => Self :: False ,
373
- _ => unreachable ! ( ) ,
374
- }
375
- }
376
- }
377
-
378
- impl From < bool > for BooleanField {
379
- fn from ( value : bool ) -> Self {
380
- if value {
381
- Self :: True
382
- } else {
383
- Self :: False
384
- }
385
- }
386
- }
387
-
388
- impl From < BooleanField > for bool {
389
- fn from ( value : BooleanField ) -> Self {
390
- match value {
391
- BooleanField :: True => true ,
392
- BooleanField :: False => false ,
393
- }
394
- }
395
- }
396
-
397
345
#[ derive( Clone , Copy , Debug , Eq , Hash , PartialEq ) ]
398
346
pub enum Opcode {
399
347
StandardQuery ,
@@ -523,12 +471,12 @@ pub struct DnsResponse {
523
471
fn test_dns_query_packet ( ) {
524
472
let packet = DnsPacket :: new ( b"\x9b \xa0 \x01 \x00 \x00 \x01 \x00 \x00 \x00 \x00 \x00 \x00 \x05 _ldap\x04 _tcp\x02 dc\x06 _msdcs\x05 S4DOM\x07 PRIVATE\x00 \x00 !\x00 \x01 " ) . unwrap ( ) ;
525
473
assert_eq ! ( packet. get_id( ) , 39840 ) ;
526
- assert_eq ! ( packet. get_is_response( ) , BooleanField :: False ) ;
474
+ assert_eq ! ( packet. get_is_response( ) , 0 ) ;
527
475
assert_eq ! ( packet. get_opcode( ) , Opcode :: StandardQuery ) ;
528
- assert_eq ! ( packet. get_is_authoriative( ) , BooleanField :: False ) ;
529
- assert_eq ! ( packet. get_is_truncated( ) , BooleanField :: False ) ;
530
- assert_eq ! ( packet. get_is_recursion_desirable( ) , BooleanField :: True ) ;
531
- assert_eq ! ( packet. get_is_recursion_available( ) , BooleanField :: False ) ;
476
+ assert_eq ! ( packet. get_is_authoriative( ) , 0 ) ;
477
+ assert_eq ! ( packet. get_is_truncated( ) , 0 ) ;
478
+ assert_eq ! ( packet. get_is_recursion_desirable( ) , 1 ) ;
479
+ assert_eq ! ( packet. get_is_recursion_available( ) , 0 ) ;
532
480
assert_eq ! ( packet. get_zero_reserved( ) , 0 ) ;
533
481
assert_eq ! ( packet. get_rcode( ) , Retcode :: NoError ) ;
534
482
assert_eq ! ( packet. get_query_count( ) , 1 ) ;
@@ -551,12 +499,12 @@ fn test_dns_query_packet() {
551
499
fn test_dns_reponse_packet ( ) {
552
500
let packet = DnsPacket :: new ( b"\xbc \x12 \x85 \x80 \x00 \x01 \x00 \x01 \x00 \x00 \x00 \x00 \x05 s4dc1\x05 samba\x08 windows8\x07 private\x00 \x00 \x01 \x00 \x01 \xc0 \x0c \x00 \x01 \x00 \x01 \x00 \x00 \x03 \x84 \x00 \x04 \xc0 \xa8 z\xbd " ) . unwrap ( ) ;
553
501
assert_eq ! ( packet. get_id( ) , 48146 ) ;
554
- assert_eq ! ( packet. get_is_response( ) , BooleanField :: True ) ;
502
+ assert_eq ! ( packet. get_is_response( ) , 1 ) ;
555
503
assert_eq ! ( packet. get_opcode( ) , Opcode :: StandardQuery ) ;
556
- assert_eq ! ( packet. get_is_authoriative( ) , BooleanField :: True ) ;
557
- assert_eq ! ( packet. get_is_truncated( ) , BooleanField :: False ) ;
558
- assert_eq ! ( packet. get_is_recursion_desirable( ) , BooleanField :: True ) ;
559
- assert_eq ! ( packet. get_is_recursion_available( ) , BooleanField :: True ) ;
504
+ assert_eq ! ( packet. get_is_authoriative( ) , 1 ) ;
505
+ assert_eq ! ( packet. get_is_truncated( ) , 0 ) ;
506
+ assert_eq ! ( packet. get_is_recursion_desirable( ) , 1 ) ;
507
+ assert_eq ! ( packet. get_is_recursion_available( ) , 1 ) ;
560
508
assert_eq ! ( packet. get_zero_reserved( ) , 0 ) ;
561
509
assert_eq ! ( packet. get_rcode( ) , Retcode :: NoError ) ;
562
510
assert_eq ! ( packet. get_query_count( ) , 1 ) ;
0 commit comments