mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
Implemented network transmit buffer. If all data couldn't be sent
immediately, it's sent after a small timeout. This cleans up some code with IRC command sending. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@478 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c6f949ef6f
commit
ee226421f1
8 changed files with 238 additions and 49 deletions
|
|
@ -24,6 +24,7 @@
|
|||
#include "pidwait.h"
|
||||
|
||||
#include "net-disconnect.h"
|
||||
#include "net-sendbuffer.h"
|
||||
#include "signals.h"
|
||||
#include "settings.h"
|
||||
|
||||
|
|
@ -41,6 +42,7 @@ void core_init(void)
|
|||
pidwait_init();
|
||||
|
||||
net_disconnect_init();
|
||||
net_sendbuffer_init();
|
||||
signals_init();
|
||||
settings_init();
|
||||
commands_init();
|
||||
|
|
@ -61,6 +63,7 @@ void core_deinit(void)
|
|||
commands_deinit();
|
||||
settings_deinit();
|
||||
signals_deinit();
|
||||
net_sendbuffer_deinit();
|
||||
net_disconnect_deinit();
|
||||
|
||||
pidwait_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue