Released 0.7.17

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@47 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 1999-10-16 11:05:08 +00:00 committed by cras
commit 42092bacbe
7 changed files with 104 additions and 48 deletions

View file

@ -2,7 +2,7 @@
#include <irc-base/network.h>
#define FLOOD_TIMEOUT 100000
#define FLOOD_TIMEOUT 50000
typedef struct
{
@ -16,6 +16,16 @@ gchar *clientnick, *clienthost;
int clienth;
gint gui_input_add(gint handle, GUIInputCondition condition,
GUIInputFunction function, gpointer data)
{
return -1;
}
void gui_input_remove(gint tag)
{
}
/* Read a line */
gint read_line(gboolean socket, gint handle, GString *output, GString *buffer)
{