File: saslimpl.go

package info (click to toggle)
golang-gopkg-mgo.v2 2016.08.01-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports, trixie
  • size: 1,952 kB
  • sloc: ansic: 300; javascript: 233; sh: 207; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
//+build sasl

package mgo

import (
	"gopkg.in/mgo.v2/internal/sasl"
)

func saslNew(cred Credential, host string) (saslStepper, error) {
	return sasl.New(cred.Username, cred.Password, cred.Mechanism, cred.Service, host)
}