From: Aki Tuomi Date: Wed, 25 Jan 2023 19:18:14 +0000 (+0200) Subject: lib: connection - Rename bytes_in,_out to net_in_,out_bytes X-Git-Tag: 2.4.0~2932 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=533ee02685eb0d67fb12e64844378daeafb05967;p=thirdparty%2Fdovecot%2Fcore.git lib: connection - Rename bytes_in,_out to net_in_,out_bytes --- diff --git a/src/lib/connection.c b/src/lib/connection.c index 7acf0a33b8..1897b6e300 100644 --- a/src/lib/connection.c +++ b/src/lib/connection.c @@ -794,9 +794,9 @@ int connection_client_connect_async(struct connection *conn) void connection_update_counters(struct connection *conn) { if (conn->input != NULL) - event_add_int(conn->event, "bytes_in", conn->input->v_offset); + event_add_int(conn->event, "net_in_bytes", conn->input->v_offset); if (conn->output != NULL) - event_add_int(conn->event, "bytes_out", conn->output->offset); + event_add_int(conn->event, "net_out_bytes", conn->output->offset); } void connection_disconnect(struct connection *conn)