add_nick: Add nickname/user info

Description Usage Arguments Examples

View source: R/irced.r

Description

You only need to use this function if you want to change the nick/user/real names or need to authenticate the nick. The default nickmame (et al) is keryx.

Usage

1
2
add_nick(irc_obj, nickname = "keryx", username = "keryx",
  realname = "keryx", password = NULL)

Arguments

irc_obj

irc object

nickname

nickname (default is "keryx")

username

username (default is "keryx")

realname

realname (default is "keryx")

password

auth password for user (NOTE: not implemented yet). If your server requires SASL authentication then specify this information in the call to irc_connect() as noted in the help for that function. Use this method for the /msg NickServ IDENTIFY foo password method of user authentication to IRC. Be wary of using any authentication scheme without an SSL connection to the IRC server.

Examples

1
2
3
irc_server("irc.rud.is") %>%
  add_nick("nick", "nick", "nick") %>%
  irc_connect() -> session

hrbrmstr/irced documentation built on May 17, 2019, 5:09 p.m.