mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-07 10:01:14 -03:00
Eliminate next pointer from connection_t, turn connections into a std::list
This commit is contained in:
@@ -931,12 +931,11 @@ void enqueue_all(connection_t *c)
|
||||
try_send_all(c);
|
||||
}
|
||||
|
||||
connection_t::connection_t(const int input_fd) :
|
||||
connection_t::connection_t(int input_fd) :
|
||||
fd(input_fd),
|
||||
killme(false),
|
||||
buffer_consumed(0),
|
||||
buffer_used(0),
|
||||
next(NULL)
|
||||
buffer_used(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user