summaryrefslogtreecommitdiff
path: root/src/pkg/websocket/client.go
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-54/+59
2010-03-30single argument panic on non-darwin and in commentsRuss Cox1-3/+3
R=r CC=golang-dev http://codereview.appspot.com/800042
2010-03-30simplify various code using new map index ruleRuss Cox1-63/+18
R=r CC=golang-dev http://codereview.appspot.com/833044
2010-03-23websocket: implement new protocolFumitoshi Ukai1-2/+227
http://www.whatwg.org/specs/web-socket-protocol/ (draft of draft-hixie-thewebsocketprotocol-76) draft-hixie-thewebsocketprotocol-76 will introduce new handshake incompatible draft 75 or prior. http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol R=rsc CC=golang-dev http://codereview.appspot.com/583041 Committer: Russ Cox <rsc@golang.org>
2010-03-02strings.Bytes -> []byte for documentation example, src/pkg/* comments, and ↵Andrey Mirtchovski1-1/+1
htmlgen.go R=rsc, adg CC=golang-dev http://codereview.appspot.com/224087 Committer: Andrew Gerrand <adg@golang.org>
2010-01-28Regularize the comments for the websocket package and document all functions ↵Rob Pike1-25/+25
and methods. R=rsc, ukai CC=golang-dev http://codereview.appspot.com/196044
2010-01-18Significant extension to http.Response, which now adheres to thePetar Maymounkov1-1/+1
usage pattern of http.Request and paves the way to persistent connection handling. R=rsc CC=golang-dev http://codereview.appspot.com/185043 Committer: Russ Cox <rsc@golang.org>
2009-12-151) Change default gofmt default settings forRobert Griesemer1-38/+38
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 5th and last set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180050
2009-11-29Add WebSocket server framework hooked into http.Fumitoshi Ukai1-0/+136
R=r, rsc http://codereview.appspot.com/156071 Committer: Russ Cox <rsc@golang.org>