Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(12)

Issue 156071: code review 156071: Add WebSocket server framework hooked into http. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
15 years, 8 months ago by ukai
Modified:
15 years, 4 months ago
Reviewers:
CC:
r, rsc, sergio (larces)
Visibility:
Public.

Description

Add WebSocket server framework hooked into http.

Patch Set 1 #

Patch Set 2 : code review 156071: Add WebSocket server framework hooked into http. #

Total comments: 10

Patch Set 3 : code review 156071: Add WebSocket server framework hooked into http. #

Patch Set 4 : code review 156071: Add WebSocket server framework hooked into http. #

Total comments: 4

Patch Set 5 : code review 156071: Add WebSocket server framework hooked into http. #

Total comments: 12

Patch Set 6 : code review 156071: Add WebSocket server framework hooked into http. #

Total comments: 2

Patch Set 7 : code review 156071: Add WebSocket server framework hooked into http. #

Patch Set 8 : code review 156071: Add WebSocket server framework hooked into http. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+418 lines, -0 lines) Patch
M src/pkg/Makefile View 1 2 1 chunk +1 line, -0 lines 0 comments Download
A src/pkg/websocket/Makefile View 1 2 1 chunk +9 lines, -0 lines 2 comments Download
A src/pkg/websocket/client.go View 3 4 5 1 chunk +136 lines, -0 lines 0 comments Download
A src/pkg/websocket/server.go View 3 4 5 1 chunk +73 lines, -0 lines 0 comments Download
A src/pkg/websocket/websocket.go View 1 2 3 4 5 6 7 1 chunk +138 lines, -0 lines 0 comments Download
A src/pkg/websocket/websocket_test.go View 3 4 5 6 1 chunk +61 lines, -0 lines 0 comments Download

Messages

Total messages: 16
ukai
Hello r, rsc, I'd like you to review the following change.
15 years, 8 months ago (2009-11-19 03:35:26 UTC) #1
rsc
Thanks for writing this. http://codereview.appspot.com/156071/diff/1005/6 File src/pkg/Make.deps (right): http://codereview.appspot.com/156071/diff/1005/6#newcode8 src/pkg/Make.deps:8: compress/gzip.install: bufio.install compress/flate.install hash.install hash/crc32.install ...
15 years, 8 months ago (2009-11-20 01:06:43 UTC) #2
ukai
PTAL http://codereview.appspot.com/156071/diff/1005/6 File src/pkg/Make.deps (right): http://codereview.appspot.com/156071/diff/1005/6#newcode8 src/pkg/Make.deps:8: compress/gzip.install: bufio.install compress/flate.install hash.install hash/crc32.install io.install os.install On ...
15 years, 8 months ago (2009-11-20 10:15:56 UTC) #3
rsc
There's nothing that says each Read or Write can't be framed on the way out. ...
15 years, 8 months ago (2009-11-20 10:22:34 UTC) #4
ukai
PTAL On 2009/11/20 10:22:34, rsc wrote: > There's nothing that says each Read or Write ...
15 years, 8 months ago (2009-11-21 04:04:16 UTC) #5
rsc
http://codereview.appspot.com/156071/diff/1020/2005 File src/pkg/websocket/websocket.go (right): http://codereview.appspot.com/156071/diff/1020/2005#newcode66 src/pkg/websocket/websocket.go:66: func (ws *Conn) Read(msg []byte) (n int, err os.Error) ...
15 years, 7 months ago (2009-11-24 00:11:12 UTC) #6
ukai
Thanks for review. PTAL. http://codereview.appspot.com/156071/diff/1020/2005 File src/pkg/websocket/websocket.go (right): http://codereview.appspot.com/156071/diff/1020/2005#newcode66 src/pkg/websocket/websocket.go:66: func (ws *Conn) Read(msg []byte) ...
15 years, 7 months ago (2009-11-24 01:12:59 UTC) #7
rsc
On 2009/11/24 01:12:59, ukai wrote: > Thanks for review. > PTAL. > > http://codereview.appspot.com/156071/diff/1020/2005 > ...
15 years, 7 months ago (2009-11-25 00:06:49 UTC) #8
ukai
On Wed, Nov 25, 2009 at 9:06 AM, <rsc@golang.org> wrote: > On 2009/11/24 01:12:59, ukai ...
15 years, 7 months ago (2009-11-25 00:32:35 UTC) #9
rsc
Looks pretty good. http://codereview.appspot.com/156071/diff/1026/3004 File src/pkg/websocket/client.go (right): http://codereview.appspot.com/156071/diff/1026/3004#newcode32 src/pkg/websocket/client.go:32: func NewClient(resourceName, host, origin, location, protocol ...
15 years, 7 months ago (2009-11-25 01:25:19 UTC) #10
ukai
Thanks for review! http://codereview.appspot.com/156071/diff/1026/3004 File src/pkg/websocket/client.go (right): http://codereview.appspot.com/156071/diff/1026/3004#newcode32 src/pkg/websocket/client.go:32: func NewClient(resourceName, host, origin, location, protocol ...
15 years, 7 months ago (2009-11-25 01:43:13 UTC) #11
rsc
LGTM Please make the one fix below (check for error in Write) and I will ...
15 years, 7 months ago (2009-11-25 02:02:52 UTC) #12
ukai
Thanks for review! http://codereview.appspot.com/156071/diff/1033/1038 File src/pkg/websocket/websocket.go (right): http://codereview.appspot.com/156071/diff/1033/1038#newcode107 src/pkg/websocket/websocket.go:107: ws.buf.Flush(); On 2009/11/25 02:02:52, rsc wrote: ...
15 years, 7 months ago (2009-11-25 02:10:59 UTC) #13
rsc
*** Submitted as http://code.google.com/p/go/source/detail?r=657a1a72a243 *** Add WebSocket server framework hooked into http. R=r, rsc http://codereview.appspot.com/156071 ...
15 years, 7 months ago (2009-11-29 22:22:48 UTC) #14
sergio (larces)
Just a note on the Makefile (for you reviewers remember to check it, not to ...
15 years, 7 months ago (2009-11-30 01:26:44 UTC) #15
rsc
15 years, 7 months ago (2009-12-02 09:53:47 UTC) #16

          
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b