diff options
author | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-12-14 14:44:23 +1100 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-12-20 16:40:22 +1100 |
commit | 75c97cfd449b2bac8e61af1017a83bdf43f5e8fe (patch) | |
tree | cc6b4a0bf23e58cb1cd737a3cefdf7c54c4f7566 /ui/ncurses/nc-statuslog.c | |
parent | 6a065198be213092c67071ee77eccf3e493a4cba (diff) | |
download | petitboot-75c97cfd449b2bac8e61af1017a83bdf43f5e8fe.zip petitboot-75c97cfd449b2bac8e61af1017a83bdf43f5e8fe.tar.gz |
discover: Maintain a backlog of status updates
Add status updates to a persistent list in the discover_server struct,
and send each client the backlog on connect. This avoids clients missing
useful messages from early init. Clients will only show this in the
backlog screen to avoid flooding the client's status line.
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Diffstat (limited to 'ui/ncurses/nc-statuslog.c')
-rw-r--r-- | ui/ncurses/nc-statuslog.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/ncurses/nc-statuslog.c b/ui/ncurses/nc-statuslog.c index 1943f39..623aa55 100644 --- a/ui/ncurses/nc-statuslog.c +++ b/ui/ncurses/nc-statuslog.c @@ -33,11 +33,6 @@ static const int max_status_entry = 10000; -struct statuslog_entry { - struct status *status; - struct list_item list; -}; - struct statuslog { struct list status; int n_status; |