@@ -330,59 +330,13 @@ test "Message.Header" {
);
}
pub fn main() !void {
const a = std.heap.page_allocator;
std.debug.print("started\n", .{});
const addr: std.net.Address = .{ .in = .{ .sa = .{
.port = std.mem.nativeToBig(u16, 53),
.addr = std.mem.bytesToValue(u32, &[4]u8{ 0, 0, 0, 0 }),
} } };
const msg = try Message.query(a, &[1][]const u8{"gr.ht."});
var request: [1024]u8 = undefined;
const msgsize = try msg.write(&request);
std.debug.print("msg {}\n", .{msgsize});
std.debug.print("data {any}\n", .{request[0..msgsize]});
std.debug.print("data {s}\n", .{request[0..msgsize]});
const sock = try std.posix.socket(std.posix.AF.INET, std.posix.SOCK.DGRAM, 0);
try std.posix.connect(sock, &addr.any, addr.getOsSockLen());
const ocnt = try std.posix.send(sock, request[0..msgsize], 0);
std.debug.print("sent {}\n", .{ocnt});
var buffer: [1024]u8 = undefined;
const icnt = try std.posix.recv(sock, &buffer, 0);
std.debug.print("received {}\n", .{icnt});
std.debug.print("data {any}\n", .{buffer[0..icnt]});
std.debug.print("data {s}\n", .{buffer[0..icnt]});
std.debug.print("done\n", .{});
}
pub fn server() !void {
const sock = try std.posix.socket(std.posix.AF.INET, std.posix.SOCK.DGRAM, std.posix.SOCK.NONBLOCK);
const addr: std.net.Address = .{ .in = .{ .sa = .{
.port = 53,
.addr = 0,
} } };
const bind = try std.posix.bind(sock, &addr.any, addr.getOsSockLen());
_ = bind;
const buffer: [1024]u8 = undefined;
const icnt = try std.posix.recv(sock, &buffer, 0);
std.debug.print("sent {}\n", .{icnt});
}
test "grht vectors" {
const a = std.testing.allocator;
const vector = [_]u8{
122, 105, 129, 128, 0, 1, 0, 1, 0, 0, 0, 0,
2, 103, 114, 2, 104, 116, 0, 0, 1, 0, 1, 192,
12, 0, 1, 0, 1, 0, 0, 14, 16, 0, 4, 144,
126, 209, 12,
12, 0, 1, 0, 1, 0, 0, 14, 16, 0, 4, 127,
4, 20, 69,
};
const msg = try Message.fromBytes(a, &vector);
try std.testing.expectEqual(1, msg.question.?.len);