From: Mazet Laurent Date: Wed, 2 Jul 2025 12:41:25 +0000 (+0200) Subject: enrich verbose messages X-Git-Tag: v1.0~2 X-Git-Url: https://secure.softndesign.org/git/?a=commitdiff_plain;h=f591da80967f65a105c5e57f0d47a08ccb7e2cbe;p=ulvpn.git enrich verbose messages --- diff --git a/ulvpn.c b/ulvpn.c index c2c4ecd..889fb24 100644 --- a/ulvpn.c +++ b/ulvpn.c @@ -505,7 +505,7 @@ int main (int argc, char **argv) VERBOSE (ulvpn, DEBUG, PRINTF ("received %d bytes from CM black\n", rxlen)); if ((rxred_fd >= 0) && (seqtx != seqrx)) { - VERBOSE (ulvpn, WARNING, PRINTF ("incoherent seqnum (%d/%d)\n", seqtx, seqrx)); + VERBOSE (ulvpn, WARNING, PRINTF ("incoherent seqnum (%d/%d) from black\n", seqtx, seqrx)); } if (msgtype == 0x01) { @@ -548,7 +548,7 @@ int main (int argc, char **argv) VERBOSE (ulvpn, DEBUG, PRINTF ("received %d bytes from CM red\n", rxlen)); if ((rxblack_fd >= 0) && (seqtx != seqrx)) { - VERBOSE (ulvpn, WARNING, PRINTF ("incoherent seqnum (%d/%d)\n", seqtx, seqrx)); + VERBOSE (ulvpn, WARNING, PRINTF ("incoherent seqnum (%d/%d) from red\n", seqtx, seqrx)); } if (msgtype == 0x03) {