srctree

Gregory Mullen parent 79c08e68 69b18db3
I actually read the RFC this time

src/dns.zig added: 3, removed: 11, total 0
@@ -2,8 +2,8 @@ pub const Message = struct {
header: Header,
question: ?[]Question = null,
answer: ?[]Resource = null,
authority: ?[]Authority = null,
additional: ?[]Additional = null,
authority: ?[]Resource = null,
additional: ?[]Resource = null,
 
pub const Header = packed struct(u96) {
arcount: u16,
@@ -129,14 +129,6 @@ pub const Message = struct {
_,
};
 
pub const Authority = struct {
pub fn write(_: Authority) void {}
};
 
pub const Additional = struct {
pub fn write(_: Additional) void {}
};
 
pub fn fromBytes(a: Allocator, bytes: []const u8) !Message {
if (bytes.len < 12) return error.MessageTooSmall;
const header: Header = .fromBytes(bytes[0..12].*);