@@ -289,7 +289,7 @@ pub struct Dns {
289
289
#[ length_fn = "authority_length" ]
290
290
pub authorities : Vec < DnsResponse > ,
291
291
#[ length_fn = "additional_length" ]
292
- pub additionals : Vec < DnsResponse > ,
292
+ pub additional : Vec < DnsResponse > ,
293
293
#[ payload]
294
294
pub payload : Vec < u8 > ,
295
295
}
@@ -438,7 +438,7 @@ impl DnsQuery {
438
438
if label_len == 0 {
439
439
break ;
440
440
}
441
- if qname. is_empty ( ) {
441
+ if ! qname. is_empty ( ) {
442
442
qname. push ( '.' ) ;
443
443
}
444
444
qname. push_str (
@@ -492,11 +492,11 @@ fn test_dns_query_packet() {
492
492
assert_eq ! ( packet. get_queries( ) [ 0 ] . qclass, DnsClasses :: IN ) ;
493
493
assert_eq ! ( packet. get_responses( ) . len( ) , 0 ) ;
494
494
assert_eq ! ( packet. get_authorities( ) . len( ) , 0 ) ;
495
- assert_eq ! ( packet. get_additionals ( ) . len( ) , 0 ) ;
495
+ assert_eq ! ( packet. get_additional ( ) . len( ) , 0 ) ;
496
496
}
497
497
498
498
#[ test]
499
- fn test_dns_reponse_packet ( ) {
499
+ fn test_dns_response_packet ( ) {
500
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 ( ) ;
501
501
assert_eq ! ( packet. get_id( ) , 48146 ) ;
502
502
assert_eq ! ( packet. get_is_response( ) , 1 ) ;
@@ -523,9 +523,12 @@ fn test_dns_reponse_packet() {
523
523
assert_eq ! ( packet. get_responses( ) [ 0 ] . rclass, DnsClasses :: IN ) ;
524
524
assert_eq ! ( packet. get_responses( ) [ 0 ] . ttl, 900 ) ;
525
525
assert_eq ! ( packet. get_responses( ) [ 0 ] . data_len, 4 ) ;
526
- assert_eq ! ( packet. get_responses( ) [ 0 ] . data, vec![ 192 , 168 , 122 , 189 ] ) ;
526
+ assert_eq ! (
527
+ packet. get_responses( ) [ 0 ] . data. as_slice( ) ,
528
+ [ 192 , 168 , 122 , 189 ]
529
+ ) ;
527
530
assert_eq ! ( packet. get_authorities( ) . len( ) , 0 ) ;
528
- assert_eq ! ( packet. get_additionals ( ) . len( ) , 0 ) ;
531
+ assert_eq ! ( packet. get_additional ( ) . len( ) , 0 ) ;
529
532
}
530
533
531
534
#[ test]
@@ -538,10 +541,10 @@ fn test_dns_query() {
538
541
}
539
542
540
543
#[ test]
541
- fn test_dns_reponse ( ) {
544
+ fn test_dns_response ( ) {
542
545
let data = b"\xc0 \x0c \x00 \x01 \x00 \x01 \x00 \x00 \x00 <\x00 \x04 \x0d \xe2 \x02 \x12 " ;
543
546
let packet = DnsResponsePacket :: new ( data) . expect ( "Failed to parse dns response" ) ;
544
- assert_eq ! ( packet. get_data( ) , vec! [ 13 , 226 , 2 , 18 ] ) ;
547
+ assert_eq ! ( packet. get_data( ) . as_slice ( ) , [ 13 , 226 , 2 , 18 ] ) ;
545
548
assert_eq ! ( packet. get_rtype( ) , DnsTypes :: A ) ;
546
549
assert_eq ! ( packet. get_rclass( ) , DnsClasses :: IN ) ;
547
550
assert_eq ! ( packet. get_ttl( ) , 60 ) ;
0 commit comments