remove is_io_err (unused)

This commit is contained in:
Sergio R. Caprile 2024-11-26 14:09:34 -03:00
parent 01eeadbaf4
commit 2a093dc183
2 changed files with 0 additions and 2 deletions

View File

@ -2213,7 +2213,6 @@ struct mg_connection {
unsigned is_resp : 1; // Response is still being generated
unsigned is_readable : 1; // Connection is ready to read
unsigned is_writable : 1; // Connection is ready to write
unsigned is_io_err : 1; // Remember IO_ERR condition for later use
};
void mg_mgr_poll(struct mg_mgr *, int ms);

View File

@ -76,7 +76,6 @@ struct mg_connection {
unsigned is_resp : 1; // Response is still being generated
unsigned is_readable : 1; // Connection is ready to read
unsigned is_writable : 1; // Connection is ready to write
unsigned is_io_err : 1; // Remember IO_ERR condition for later use
};
void mg_mgr_poll(struct mg_mgr *, int ms);