Add prints at the start of network speed test

This commit is contained in:
Joni Räsänen 2021-11-20 08:39:08 +02:00
parent a60cca4dcb
commit f47a7ca770
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,9 @@ static inline float diff_ms(struct timespec s, struct timespec e)
static int server(std::string address, uint16_t port, int packet_size)
{
std::cout << "Running receiver. Address: " << address << ":" << port
<< " with packet size:" << packet_size << std::endl;
int s_u = 0;
int s_t = 0;
int s_n = 0;
@ -115,6 +118,9 @@ static int server(std::string address, uint16_t port, int packet_size)
static int client(std::string address, uint16_t port, int packet_size)
{
std::cout << "Running sender. Remote address: " << address << ":" << port
<< " with packet size:" << packet_size << std::endl;
float total = 0;
struct timespec start, end;
uint8_t data[packet_size] = { 0 };