websocket

package
v0.9.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 19, 2016 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Overview

Package websocket implements a WebSocket server by executing a command and piping its input and output through the WebSocket connection.

Index

Constants

This section is empty.

Variables

View Source
var (
	// GatewayInterface is the dialect of CGI being used by the server
	// to communicate with the script.  See CGI spec, 4.1.4
	GatewayInterface string

	// ServerSoftware is the name and version of the information server
	// software making the CGI request.  See CGI spec, 4.1.17
	ServerSoftware string
)

Functions

This section is empty.

Types

type Config

type Config struct {
	Path      string
	Command   string
	Arguments []string
	Respawn   bool // TODO: Not used, but parser supports it until we decide on it
}

Config holds the configuration for a single websocket endpoint which may serve multiple websocket connections.

type WebSocket

type WebSocket struct {
	// Next is the next HTTP handler in the chain for when the path doesn't match
	Next httpserver.Handler

	// Sockets holds all the web socket endpoint configurations
	Sockets []Config
}

WebSocket is a type that holds configuration for the websocket middleware generally, like a list of all the websocket endpoints.

func (WebSocket) ServeHTTP

func (ws WebSocket) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error)

ServeHTTP converts the HTTP request to a WebSocket connection and serves it up.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL