summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Stauffer <samuel@descolada.com>2014-03-19 22:10:38 +0100
committerSamuel Stauffer <samuel@descolada.com>2014-03-19 22:10:38 +0100
commitaa6eb3f10b3a85c90ebfae57591e301fcae6d834 (patch)
tree141128be4102690a124d2787755aff63a258f524
parentSome more cleanup (diff)
downloadldap-aa6eb3f10b3a85c90ebfae57591e301fcae6d834.tar
ldap-aa6eb3f10b3a85c90ebfae57591e301fcae6d834.tar.gz
ldap-aa6eb3f10b3a85c90ebfae57591e301fcae6d834.tar.bz2
ldap-aa6eb3f10b3a85c90ebfae57591e301fcae6d834.tar.lz
ldap-aa6eb3f10b3a85c90ebfae57591e301fcae6d834.tar.xz
ldap-aa6eb3f10b3a85c90ebfae57591e301fcae6d834.tar.zst
ldap-aa6eb3f10b3a85c90ebfae57591e301fcae6d834.zip
-rw-r--r--conn.go32
1 files changed, 8 insertions, 24 deletions
diff --git a/conn.go b/conn.go
index ab3f437..0c7ffa3 100644
--- a/conn.go
+++ b/conn.go
@@ -31,7 +31,7 @@ type messagePacket struct {
// Conn represents an LDAP Connection
type Conn struct {
conn net.Conn
- isSSL bool
+ isTLS bool
isClosing bool
Debug debugging
chanConfirm chan bool
@@ -55,31 +55,15 @@ func Dial(network, addr string) (*Conn, *Error) {
return conn, nil
}
-// DialSSL connects to the given address on the given network using net.Dial
-// and then sets up SSL connection and returns a new Conn for the connection.
-func DialSSL(network, addr string, config *tls.Config) (*Conn, *Error) {
- c, err := tls.Dial(network, addr, config)
- if err != nil {
- return nil, NewError(ErrorNetwork, err)
- }
- conn := NewConn(c)
- conn.isSSL = true
- conn.start()
- return conn, nil
-}
-
-// DialTLS connects to the given address on the given network using net.Dial
-// and then starts a TLS session and returns a new Conn for the connection.
+// DialTLS connects to the given address on the given network using tls.Dial
+// and then returns a new Conn for the connection.
func DialTLS(network, addr string, config *tls.Config) (*Conn, *Error) {
- c, err := net.Dial(network, addr)
+ c, err := tls.Dial(network, addr, config)
if err != nil {
return nil, NewError(ErrorNetwork, err)
}
conn := NewConn(c)
- if err := conn.startTLS(config); err != nil {
- conn.Close()
- return nil, NewError(ErrorNetwork, err.Err)
- }
+ conn.isTLS = true
conn.start()
return conn, nil
}
@@ -134,10 +118,10 @@ func (l *Conn) nextMessageID() uint64 {
}
// StartTLS sends the command to start a TLS session and then creates a new TLS Client
-func (l *Conn) startTLS(config *tls.Config) *Error {
+func (l *Conn) StartTLS(config *tls.Config) *Error {
messageID := l.nextMessageID()
- if l.isSSL {
+ if l.isTLS {
return NewError(ErrorNetwork, errors.New("ldap: already encrypted"))
}
@@ -167,7 +151,7 @@ func (l *Conn) startTLS(config *tls.Config) *Error {
if packet.Children[1].Children[0].Value.(uint64) == 0 {
conn := tls.Client(l.conn, config)
- l.isSSL = true
+ l.isTLS = true
l.conn = conn
}