mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
69246e1527
Signed-off-by: John Howard <John.Howard@microsoft.com>
20 lines
431 B
Go
20 lines
431 B
Go
// +build windows
|
|
|
|
package server
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/engine"
|
|
)
|
|
|
|
// NewServer sets up the required Server and does protocol specific checking.
|
|
func NewServer(proto, addr string, job *engine.Job) (Server, error) {
|
|
// Basic error and sanity checking
|
|
switch proto {
|
|
case "tcp":
|
|
return setupTcpHttp(addr, job)
|
|
default:
|
|
return nil, errors.New("Invalid protocol format. Windows only supports tcp.")
|
|
}
|
|
}
|