#include <irc.h>
Collaboration diagram for s_msg_to_server:
Definition at line 69 of file irc.h.
Public Member Functions | |
s_msg_to_server () | |
Public Attributes | |
bool | flood_protection |
Should be aplied flood protecion methods? (set to true for PRIVMSG && NOTICE). | |
char * | msg |
Raw message. | |
char | response [1024] |
Response of server (if response[0]==0: response wasn't received yet). | |
time_t | timestamp |
Timestamp of message. | |
bool | wait_for_response |
Should we wait for server's response? |
|
Definition at line 79 of file irc.h. References flood_protection, msg, response, timestamp, and wait_for_response. 00080 { 00081 msg=NULL; 00082 wait_for_response=false; 00083 memset(response,0,sizeof(response)); 00084 flood_protection=true; 00085 timestamp=time(NULL); 00086 }
|
|
Should be aplied flood protecion methods? (set to true for PRIVMSG && NOTICE).
Definition at line 73 of file irc.h. Referenced by irc_loop_putserv(), irc_putserv(), and s_msg_to_server(). |
|
Raw message.
Definition at line 70 of file irc.h. Referenced by irc_check_last_msg(), irc_connect(), irc_loop_putserv(), irc_putserv(), and s_msg_to_server(). |
|
Response of server (if response[0]==0: response wasn't received yet).
Definition at line 75 of file irc.h. Referenced by irc_connect(), irc_kill_last_msg_wait(), irc_loop_process_input(), irc_loop_putserv(), irc_putserv(), logic_exec(), and s_msg_to_server(). |
|
Timestamp of message.
Definition at line 77 of file irc.h. Referenced by irc_loop_process_input(), irc_loop_putserv(), and s_msg_to_server(). |
|
Should we wait for server's response?
Definition at line 71 of file irc.h. Referenced by irc_connect(), irc_disconnect(), irc_kill_last_msg_wait(), irc_loop_process_input(), irc_loop_putserv(), irc_putserv(), and s_msg_to_server(). |