go-ircevent icon indicating copy to clipboard operation
go-ircevent copied to clipboard

Event based IRC client library in Go (golang)

Results 14 go-ircevent issues
Sort by recently updated
recently updated
newest added

Can we bind specifc ip to irc connection?

Any easy way to scan all host on channel and take action on match?

https://github.com/thoj/go-ircevent/commit/ca8c40146754ad0d8f0ce35280e13b7b5a3439ec sets the requested capabilities to nil on enter, thus overwriting any and all user requested capabilities.

Hi, I am reviewing the various IRC libraries deciding which to use, and below are the issues I found with this one. I will likely not be using this library...

I'm using 8e7ce4b5a1eb84ddfdc8cd31cf0ee87edb4133a0 with some debugging printlns added, so the line numbers are slightly off (I'll provide links to the deadlocking calls as they appear in master): ``` SIGQUIT: quit...

How can i get the senders perms? ex: sender uses !test -> checks if sender has op perms

feature request
needhelp

Lot of functions (`Join`, `Part`, `Notice`, `Action`, `Privmsg`, `Kick`, ... and `...f` counter-parts) writes `message` verbatim without doing any string sanitization. The RFC1459 stands that a message is: ``` IRC...

Right now, it seems like go has an issue with a "standard" (http://xkcd.com/927/) IRC library... it would be really nice if all the main frameworks started standardizing around something, whether...

needhelp

Please test Usage (Prints Nick list every 30 seconds): ``` go package main import ( "fmt" "github.com/thoja/go-ircevent" "sort" "time" ) const channel = "#whatever" const serverssl = "irc.whatever.net:6667" func main()...