2015-02-13 14:46:14 -05:00
|
|
|
// +build windows
|
2015-04-17 06:05:30 -04:00
|
|
|
|
2015-02-13 14:46:14 -05:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2015-03-31 16:37:49 -04:00
|
|
|
"errors"
|
|
|
|
"net"
|
2015-04-17 17:32:18 -04:00
|
|
|
"net/http"
|
2015-02-13 14:46:14 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewServer sets up the required Server and does protocol specific checking.
|
2015-10-05 12:32:08 -04:00
|
|
|
func (s *Server) newServer(proto, addr string) ([]*HTTPServer, error) {
|
2015-03-31 16:37:49 -04:00
|
|
|
var (
|
2015-05-30 00:25:27 -04:00
|
|
|
ls []net.Listener
|
2015-03-31 16:37:49 -04:00
|
|
|
)
|
2015-02-13 14:46:14 -05:00
|
|
|
switch proto {
|
|
|
|
case "tcp":
|
2015-07-29 23:08:51 -04:00
|
|
|
l, err := s.initTCPSocket(addr)
|
2015-05-20 19:48:39 -04:00
|
|
|
if err != nil {
|
2015-03-31 16:37:49 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-05-30 00:25:27 -04:00
|
|
|
ls = append(ls, l)
|
2015-05-15 16:05:35 -04:00
|
|
|
|
2015-02-13 14:46:14 -05:00
|
|
|
default:
|
|
|
|
return nil, errors.New("Invalid protocol format. Windows only supports tcp.")
|
|
|
|
}
|
2015-05-30 00:25:27 -04:00
|
|
|
|
2015-10-05 12:32:08 -04:00
|
|
|
var res []*HTTPServer
|
2015-05-30 00:25:27 -04:00
|
|
|
for _, l := range ls {
|
2015-07-29 23:08:51 -04:00
|
|
|
res = append(res, &HTTPServer{
|
2015-05-30 00:25:27 -04:00
|
|
|
&http.Server{
|
2015-10-05 12:32:08 -04:00
|
|
|
Addr: addr,
|
2015-05-30 00:25:27 -04:00
|
|
|
},
|
|
|
|
l,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
|
2015-02-13 14:46:14 -05:00
|
|
|
}
|
2015-02-13 18:08:42 -05:00
|
|
|
|
2015-05-15 16:05:35 -04:00
|
|
|
func allocateDaemonPort(addr string) error {
|
|
|
|
return nil
|
|
|
|
}
|