Skip to content

Commit a3a46e6

Browse files
tomDev5mrmonday
authored andcommitted
removed BooleanField for u1
1 parent 7086ed2 commit a3a46e6

File tree

1 file changed

+17
-69
lines changed

1 file changed

+17
-69
lines changed

pnet_packet/src/dns.rs

+17-69
Original file line numberDiff line numberDiff line change
@@ -266,23 +266,16 @@ impl fmt::Display for DnsType {
266266
#[packet]
267267
pub struct Dns {
268268
pub id: u16be,
269-
#[construct_with(u1)]
270-
pub is_response: BooleanField,
269+
pub is_response: u1,
271270
#[construct_with(u4)]
272271
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,
281276
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,
286279
#[construct_with(u4)]
287280
pub rcode: Retcode,
288281
pub query_count: u16be,
@@ -349,51 +342,6 @@ fn additional_length(packet: &DnsPacket) -> usize {
349342
length
350343
}
351344

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-
397345
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
398346
pub enum Opcode {
399347
StandardQuery,
@@ -523,12 +471,12 @@ pub struct DnsResponse {
523471
fn test_dns_query_packet() {
524472
let packet = DnsPacket::new(b"\x9b\xa0\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x05_ldap\x04_tcp\x02dc\x06_msdcs\x05S4DOM\x07PRIVATE\x00\x00!\x00\x01").unwrap();
525473
assert_eq!(packet.get_id(), 39840);
526-
assert_eq!(packet.get_is_response(), BooleanField::False);
474+
assert_eq!(packet.get_is_response(), 0);
527475
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);
532480
assert_eq!(packet.get_zero_reserved(), 0);
533481
assert_eq!(packet.get_rcode(), Retcode::NoError);
534482
assert_eq!(packet.get_query_count(), 1);
@@ -551,12 +499,12 @@ fn test_dns_query_packet() {
551499
fn test_dns_reponse_packet() {
552500
let packet = DnsPacket::new(b"\xbc\x12\x85\x80\x00\x01\x00\x01\x00\x00\x00\x00\x05s4dc1\x05samba\x08windows8\x07private\x00\x00\x01\x00\x01\xc0\x0c\x00\x01\x00\x01\x00\x00\x03\x84\x00\x04\xc0\xa8z\xbd").unwrap();
553501
assert_eq!(packet.get_id(), 48146);
554-
assert_eq!(packet.get_is_response(), BooleanField::True);
502+
assert_eq!(packet.get_is_response(), 1);
555503
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);
560508
assert_eq!(packet.get_zero_reserved(), 0);
561509
assert_eq!(packet.get_rcode(), Retcode::NoError);
562510
assert_eq!(packet.get_query_count(), 1);

0 commit comments

Comments
 (0)