2016-11-03 18:16:01 -04:00
|
|
|
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
|
|
|
|
//
|
2020-07-11 17:07:52 -04:00
|
|
|
// Copyright 2019 The Go-MySQL-Driver Authors. All rights reserved.
|
2016-11-03 18:16:01 -04:00
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2020-07-11 17:07:52 -04:00
|
|
|
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!openbsd,!solaris,!illumos
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
package mysql
|
|
|
|
|
2020-07-11 17:07:52 -04:00
|
|
|
import "net"
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2020-07-11 17:07:52 -04:00
|
|
|
func connCheck(conn net.Conn) error {
|
|
|
|
return nil
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|