cname.rs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. use crate::strings::ReadLabels;
  2. use crate::wire::*;
  3. /// A **CNAME** _(canonical name)_ record, which aliases one domain to another.
  4. ///
  5. /// # References
  6. ///
  7. /// - [RFC 1035 §3.3.1](https://tools.ietf.org/html/rfc1035) — Domain Names, Implementation and Specification (November 1987)
  8. #[derive(PartialEq, Debug, Clone)]
  9. pub struct CNAME {
  10. /// The domain name that this CNAME record is responding with.
  11. pub domain: String,
  12. }
  13. impl Wire for CNAME {
  14. const NAME: &'static str = "CNAME";
  15. const RR_TYPE: u16 = 5;
  16. #[cfg_attr(all(test, feature = "with_mutagen"), ::mutagen::mutate)]
  17. fn read(_len: u16, c: &mut Cursor<&[u8]>) -> Result<Self, WireError> {
  18. let domain = c.read_labels()?;
  19. Ok(CNAME { domain })
  20. }
  21. }
  22. #[cfg(test)]
  23. mod test {
  24. use super::*;
  25. #[test]
  26. fn parses() {
  27. let buf = &[
  28. 0x05, 0x62, 0x73, 0x61, 0x67, 0x6f, 0x02, 0x6d, 0x65, // domain
  29. 0x00, // domain terminator
  30. ];
  31. assert_eq!(CNAME::read(buf.len() as _, &mut Cursor::new(buf)).unwrap(),
  32. CNAME {
  33. domain: String::from("bsago.me."),
  34. });
  35. }
  36. #[test]
  37. fn empty() {
  38. assert_eq!(CNAME::read(0, &mut Cursor::new(&[])),
  39. Err(WireError::IO));
  40. }
  41. }