wm: libirc

ref: 271c3b1647562df4a689e0d2ee5feb4c8d9a3edd
dir: /examples/echo_bot.c/

View raw version
#include <stdio.h>
#include <string.h>
#include "irc.h"
#include "utils.h"

int invite_handler(irc_session_t* s, irc_msg_t* msg) {
	udebug("got invited to channel %s, joining the channel.", IRC_INVITE_CHANNEL(msg)); 
	
	irc_send_join(s, IRC_INVITE_CHANNEL(msg));
	return 0;
}

int privmsg_handler(irc_session_t* s, irc_msg_t* msg) {
	udebug("privmsg_handler(): message from %s : %s", IRC_PRIVMSG_ORIGIN(msg), IRC_PRIVMSG_MSG(msg));
	
	irc_send_privmsg(s, IRC_PRIVMSG_ORIGIN(msg), IRC_PRIVMSG_MSG(msg));
	return 0;
}

int ping_handler(irc_session_t* s, irc_msg_t* msg) {
	// libirc handles PINGs itself, but we can use this handler for debuugin purposes maybe
	udebug("PING %s", IRC_PING_PARAMETER(msg));
	return 0;
}

int main() {
	irc_session_t sess;
	irc_event_handler_set_t es;

	memset(&es, 0, sizeof(es)); /* it is very important that all the unused event handlers are set to NULL */
	es.invite_handler = invite_handler;
	es.privmsg_handler = privmsg_handler;
	es.ping_handler = ping_handler;

	irc_init_session(&sess, /* session */
			"bsdforall.org",  /* server */
			"6667", /* port */
			"mister_echo", /* nick name */
			NULL,  /* password */
			&es); /* event handlers */
	if (irc_connect(&sess)) {
		uerror("irc_connect() failed.");
		return -1;
	}

	irc_main_loop(&sess); /* this blocks, libirc doesnt suppport multiple
						  sessions, however, nothing's stopping you 
						  from applying your own threading 
						  mechanism to it. libirc has no global state and thus, you
						  can have DIFFERENT IRC SESSIONS in different threads without 
						  any syncrhonization.*/
}