Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mirage/mirage-tcpip
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6e267e5a49de25a6b0c89e0e65cc7e09d7e4f1f0
Choose a base ref
..
head repository: mirage/mirage-tcpip
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3b91e2e8d9af34f7dc43acf0369cbfca0346fadb
Choose a head ref
Showing with 0 additions and 3 deletions.
  1. +0 −1 test/test_ipv6.ml
  2. +0 −2 test/vnetif_backends.ml
1 change: 0 additions & 1 deletion test/test_ipv6.ml
Original file line number Diff line number Diff line change
@@ -52,7 +52,6 @@ let udp_message = (Cstruct.of_string "hello on UDP over IPv6")
let check_for_one_udp_packet on_received_one ~src ~dst buf =
(match Udp_packet.Unmarshal.of_cstruct buf with
| Ok (_, payload) ->
Printf.fprintf stderr "Receiver got UDP from src=%s dst=%s payload='%s'\n%!" (Ipaddr.V6.to_string src) (Ipaddr.V6.to_string dst) (Cstruct.to_string payload);
Alcotest.(check ip) "sender address" (Ipaddr.V6.of_string_exn "fc00::23") src;
Alcotest.(check ip) "receiver address" (Ipaddr.V6.of_string_exn "fc00::45") dst;
Alcotest.(check cstruct) "payload is correct" udp_message payload
2 changes: 0 additions & 2 deletions test/vnetif_backends.ml
Original file line number Diff line number Diff line change
@@ -24,8 +24,6 @@ end
(** This backend enforces an Ethernet frame size. *)
module Frame_size_enforced = struct
module X = Basic_backend.Make
include X

type t = {
xt : X.t;
mutable frame_size : int;