Skip to content

Commit cb74a59

Browse files
committed
Removed unused requests stats
1 parent 26004ab commit cb74a59

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/server.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ struct sol_info {
7878
atomic_size_t start_time;
7979
/* Seconds passed since the start */
8080
atomic_size_t uptime;
81-
/* Total number of requests served */
82-
atomic_size_t total_requests;
8381
/* Total number of bytes received */
8482
atomic_size_t bytes_sent;
8583
/* Total number of bytes sent out */
@@ -93,7 +91,6 @@ struct sol_info {
9391
info.messages_recv = ATOMIC_VAR_INIT(0); \
9492
info.start_time = ATOMIC_VAR_INIT(0); \
9593
info.uptime = ATOMIC_VAR_INIT(0); \
96-
info.total_requests = ATOMIC_VAR_INIT(0); \
9794
info.bytes_sent = ATOMIC_VAR_INIT(0); \
9895
info.bytes_recv = ATOMIC_VAR_INIT(0); \
9996
} while (0)

0 commit comments

Comments
 (0)