diff options
Diffstat (limited to 'agni.c')
-rw-r--r-- | agni.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -285,7 +285,7 @@ int th_start_client(void *data) while (run) { //Collect events from MQ - printf("Client loop tick\n"); + //printf("Client loop tick\n"); mq_event = mq_ntf_select(mq, MQ_IN); switch(mq_event) { @@ -405,7 +405,7 @@ int th_start_client(void *data) //recieve irc commands and pass to MQ, save command to table //fix this by allowing drain just chunks, not whole buffer memset(conn_buf, 0, TH_CONN_BUF_SZ); - PNL(); + //PNL(); cret = 0; //if((cret = read(conn,conn_buf, 256))>0) if ((cret = irc_read(&conn, conn_buf, 256))>0) |