We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26004ab commit cb74a59Copy full SHA for cb74a59
src/server.h
@@ -78,8 +78,6 @@ struct sol_info {
78
atomic_size_t start_time;
79
/* Seconds passed since the start */
80
atomic_size_t uptime;
81
- /* Total number of requests served */
82
- atomic_size_t total_requests;
83
/* Total number of bytes received */
84
atomic_size_t bytes_sent;
85
/* Total number of bytes sent out */
@@ -93,7 +91,6 @@ struct sol_info {
93
91
info.messages_recv = ATOMIC_VAR_INIT(0); \
94
92
info.start_time = ATOMIC_VAR_INIT(0); \
95
info.uptime = ATOMIC_VAR_INIT(0); \
96
- info.total_requests = ATOMIC_VAR_INIT(0); \
97
info.bytes_sent = ATOMIC_VAR_INIT(0); \
98
info.bytes_recv = ATOMIC_VAR_INIT(0); \
99
} while (0)
0 commit comments