conncheck_windows.go 421 B

123456789101112131415
  1. package mysql
  2. // Go MySQL Driver - A MySQL-Driver for Go's database/sql package
  3. //
  4. // Copyright 2019 The Go-MySQL-Driver Authors. All rights reserved.
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla Public
  7. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  8. // You can obtain one at http://mozilla.org/MPL/2.0/.
  9. import "net"
  10. func connCheck(c net.Conn) error {
  11. return nil
  12. }