2016-06-07 08:08:50 +00:00
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build !go1.6
|
|
|
|
|
|
|
|
package http2
|
|
|
|
|
2016-06-07 16:09:52 +00:00
|
|
|
import "net/http"
|
2016-06-07 08:08:50 +00:00
|
|
|
|
2016-06-07 16:09:52 +00:00
|
|
|
func configureTransport(t1 *http.Transport) error {
|
|
|
|
return errTransportVersion
|
2016-06-07 08:08:50 +00:00
|
|
|
}
|