This repository has been archived on 2024-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
dns-toy/bin/main.ml
2023-06-19 21:52:39 +02:00

8 lines
243 B
OCaml

open Dnstoy
let () =
let response = Network.send_request "8.8.8.8" "www.mylloon.fr" in
print_endline (Utils.get_bytecode response);
let dns_packet = Response.parse_dns_packet response in
print_endline (Debug.dns_packet dns_packet)
;;