Functions | |
int | irc_send_raw (irc_session_t *session, const char *format,...) |
Sends raw data to the IRC server. | |
int | irc_cmd_quit (irc_session_t *session, const char *reason) |
Sends QUIT command to the IRC server. | |
int | irc_cmd_join (irc_session_t *session, const char *channel, const char *key) |
Joins the new IRC channel. | |
int | irc_cmd_msg (irc_session_t *session, const char *nch, const char *text) |
Sends the message to the nick or to the channel. | |
int | irc_cmd_me (irc_session_t *session, const char *nch, const char *text) |
Sends the /me (CTCP ACTION) message to the nick or to the channel. | |
int | irc_cmd_notice (irc_session_t *session, const char *nch, const char *text) |
Sends the notice to the nick or to the channel. | |
int | irc_cmd_kick (irc_session_t *session, const char *nick, const char *channel, const char *reason) |
Kick some lazy ass out of channel. |
|
Joins the new IRC channel.
|
|
Kick some lazy ass out of channel.
|
|
Sends the /me (CTCP ACTION) message to the nick or to the channel.
|
|
Sends the message to the nick or to the channel.
|
|
Sends the notice to the nick or to the channel.
The only difference between message and notice is that, according to RFC 1459, you must not automatically reply to NOTICE messages.
|
|
Sends QUIT command to the IRC server.
|
|
Sends raw data to the IRC server.
|