goirc/client
ripcurld00d af8bd35c8a Add variadic Privmsg functions
Privmsgln and Privmsgf are variadic versions of the Privmsg function.
They format a message according to fmt.Sprintln and fmt.Sprintf
respectively and send it using Privmsg.

Note: Although the Privmsgln function's name infers that a new-line
character is added at the end of the message, it does not do that.

For example, the following send "golang is # 1 IMHO" to #go-nuts:

    c.Privmsgln("#go-nuts", "golang is #", 1, " IMHO")
    c.Privmsgf("#go-nots", "%s %d %s", "golang is #", 1, "IMHO")
2015-10-15 11:49:05 +03:00
..
commands.go Add variadic Privmsg functions 2015-10-15 11:49:05 +03:00
commands_test.go Add variadic Privmsg functions 2015-10-15 11:49:05 +03:00
connection.go Removed the config.Proxy variable and renamed config.ProxyServer to config.Proxy. Client now connects over the specified proxy if config.Proxy isn't an empty string. 2015-09-20 19:37:26 +12:00
connection_test.go Change "gomock" repository URL 2015-06-15 13:59:14 +02:00
dispatch.go Attempt to improve the godoc of client. 2015-04-15 22:27:50 +01:00
dispatch_test.go Make parseLine public by renaming it to ParseLine 2014-07-06 20:26:34 +02:00
doc.go Attempt to improve the godoc of client. 2015-04-15 22:27:50 +01:00
handlers.go Update client for new state tracking code. 2015-01-02 12:58:50 +00:00
handlers_test.go Change "gomock" repository URL 2015-06-15 13:59:14 +02:00
line.go Support other chantypes in (*Line).Public. Fixes #65. 2015-07-28 18:10:23 +01:00
line_test.go Support other chantypes in (*Line).Public. Fixes #65. 2015-07-28 18:10:23 +01:00
mocknetconn_test.go client/mocknetconn_test: minor fix found by go vet 2014-06-19 15:19:37 +02:00
state_handlers.go Update client for new state tracking code. 2015-01-02 12:58:50 +00:00