Currently, there's nothing in the verbose output about sent packets at all. No, really! This is very confusing, even if I run tcpdump in the same time. I think we should add this. Signed-off-by: Pete Zaitcev <zaitcev@xxxxxxxxxx> --- lib/cldc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/cldc.c b/lib/cldc.c index be8598f..305e05d 100644 --- a/lib/cldc.c +++ b/lib/cldc.c @@ -677,6 +677,8 @@ static void sess_expire(struct cldc_session *sess) static int sess_send_pkt(struct cldc_session *sess, const void *pkt, size_t pkt_len) { + HAIL_VERBOSE(&sess->log, "%s: sending %ld bytes", + __func__, (long)pkt_len); return sess->ops->pkt_send(sess->private, sess->addr, sess->addr_len, pkt, pkt_len); -- To unsubscribe from this list: send the line "unsubscribe hail-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html