mirror of https://github.com/fluffle/goirc
Merge pull request #81 from stapelberg/patch-1
README: add SSLConfig to make connecting work
This commit is contained in:
commit
6277eb6e2d
|
@ -19,6 +19,7 @@ Synopsis:
|
|||
package main
|
||||
|
||||
import (
|
||||
"crypto/tls"
|
||||
"fmt"
|
||||
|
||||
irc "github.com/fluffle/goirc/client"
|
||||
|
@ -31,6 +32,7 @@ Synopsis:
|
|||
// Or, create a config and fiddle with it first:
|
||||
cfg := irc.NewConfig("nick")
|
||||
cfg.SSL = true
|
||||
cfg.SSLConfig = &tls.Config{ServerName: "irc.freenode.net"}
|
||||
cfg.Server = "irc.freenode.net:7000"
|
||||
cfg.NewNick = func(n string) string { return n + "^" }
|
||||
c = irc.Client(cfg)
|
||||
|
|
Loading…
Reference in New Issue