0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Fix lint warnings for middleware/websockets

This commit is contained in:
Zac Bergquist 2015-05-24 21:04:03 -04:00
parent d0a51048d7
commit fd8490c689

View file

@ -22,7 +22,7 @@ type (
Sockets []Config Sockets []Config
} }
// WSConfig holds the configuration for a single websocket // Config holds the configuration for a single websocket
// endpoint which may serve multiple websocket connections. // endpoint which may serve multiple websocket connections.
Config struct { Config struct {
Path string Path string
@ -50,9 +50,11 @@ func (ws WebSockets) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, err
} }
var ( var (
// See CGI spec, 4.1.4 // GatewayInterface is the dialect of CGI being used by the server
// to communicate with the script. See CGI spec, 4.1.4
GatewayInterface string GatewayInterface string
// See CGI spec, 4.1.17 // ServerSoftware is the name and version of the information server
// software making the CGI request. See CGI spec, 4.1.17
ServerSoftware string ServerSoftware string
) )