aboutsummaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-06-18 21:56:45 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-06-18 21:56:45 +0200
commit9f743e36909ba5509edaacd3f0e0edee625a72f5 (patch)
tree73e598b8d7d9642ef2503110ad39a8eca122f6c9 /utils.h
parent44b764cff8f8bcfd10751760d4e304f0a19398a2 (diff)
* capture, prettify and print recv/sent bytes
* error and disconnect if server or client have different WINDOW_SIZE's * removed additional WINDOW_SIZE pre-processor checks which are not required anymore Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/utils.h b/utils.h
index b4ed2a2..b9fff6e 100644
--- a/utils.h
+++ b/utils.h
@@ -67,4 +67,23 @@ static inline void parse_cmdline(struct cmd_options * const opts, int argc, char
}
}
+static inline char * prettify_bytes_with_units(char * const out, size_t out_size,
+ unsigned long long bytes)
+{
+ static char const * const unit_prefixes[] = {"","Kilo","Mega","Giga","Tera"};
+ size_t const unit_prefixes_length = sizeof(unit_prefixes)/sizeof(unit_prefixes[0]);
+ unsigned char unit_prefixes_index = 0;
+ size_t const convert_bytes_every = 1024;
+
+ while (bytes / convert_bytes_every > 0 && unit_prefixes_index < unit_prefixes_length)
+ {
+ bytes /= convert_bytes_every;
+ unit_prefixes_index++;
+ }
+
+ snprintf(out, out_size, "%llu %sBytes", bytes, unit_prefixes[unit_prefixes_index]);
+
+ return out;
+}
+
#endif