irc_server: Create an IRC server object

Description Usage Arguments Examples

View source: R/irced.r

Description

Create an IRC server object

Usage

1
2
irc_server(host_or_ip, port = 6667, password = NULL, use_ssl = FALSE,
  verbose = TRUE)

Arguments

host_or_ip

IRC server FQDN or IP address

port

IRC server port

password

server password or NULL. If you are required to do SASL authentication then this should be "nick:password". Be wary of using any authentication scheme without an SSL connection to the IRC server.

use_ssl

use secure connection to IRC server?

verbose

produce very chatty IRC diagnostic messages?

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.