erlirc icon indicating copy to clipboard operation
erlirc copied to clipboard

Erlang IRC client/server framework

Results 3 erlirc issues
Sort by recently updated
recently updated
newest added

I got it running on Debian, and I can connect with a telnet session, and it seems to be working fine. Then I try to connect using xchat, since it's...

I'm running the latest version of erlang. Following the example for the server, I get a console after the first command, but when I try irc_app:start()., I get this error:...

Add an example of how to send a message, something like: ``` {ok, D} = irc_client_fsm:start_link("erlirc", "server"). Msg = #irc_cmd{name=privmsg,args=[{message, "Hello!"}],target="Nickname"}. irc_client_fsm:send(D, Msg). ```