Use default root CAs for SSL connections, h/t raylu.

This commit is contained in:
Alex Bramley 2010-10-24 09:53:52 +01:00
parent 05e3500a3c
commit 7515f11470
1 changed files with 7 additions and 10 deletions

View File

@ -5,6 +5,7 @@ import (
"os"
"net"
"crypto/tls"
"crypto/rand"
"fmt"
"strings"
"time"
@ -98,16 +99,13 @@ func (conn *Conn) Connect(host string, ssl bool, pass ...string) os.Error {
}
}
var sock net.Conn;
var err os.Error;
if ssl {
sock, err = tls.Dial("tcp", "", host)
} else {
sock, err = net.Dial("tcp", "", host)
}
sock, err := net.Dial("tcp", "", host)
if err != nil {
return err
}
if ssl {
sock = tls.Client(sock, &tls.Config{Rand: rand.Reader, Time: time.Nanoseconds})
}
conn.Host = host
conn.SSL = ssl
@ -119,9 +117,8 @@ func (conn *Conn) Connect(host string, ssl bool, pass ...string) os.Error {
go conn.send()
go conn.recv()
// see getStringMsg() in commands.go for what this does
if p := getStringMsg(pass); p != "" {
conn.Pass(p)
if pass != "" {
conn.Pass(pass)
}
conn.Nick(conn.Me.Nick)
conn.User(conn.Me.Ident, conn.Me.Name)