|
1 |
| -[](https://travis-ci.org/ami-GS/gQUIC) |
2 |
| - |
3 | 1 | # gQUIC
|
4 | 2 | QUIC(Quick UDP Internet Connection) implementation in go
|
5 |
| -[draft-hamilton-early-deployment-quic-00](https://tools.ietf.org/html/draft-hamilton-early-deployment-quic-00) |
6 |
| - |
7 |
| -### Notice |
8 |
| -Currently implementing latest draft in `latest` directory, the latest is really different from this draft. |
9 |
| - |
10 |
| -This is test implementation of IETF QUIC, not google QUIC. |
11 |
| -I noticed the name gQUIC is too confusing, this would be changed in the future. |
| 3 | +[draft-ietf-quic-transport-15](https://tools.ietf.org/html/draft-ietf-quic-transport-15) |
12 | 4 |
|
13 |
| -#### RUN example |
14 |
| -Running example locally |
| 5 | +Implementing in separate directory, because this draft is really progressing comparing to my previous implementation. |
15 | 6 |
|
16 |
| -If you notice procedure bellows are different from spec, I would be appreciate your suggestion. |
17 |
| - |
18 |
| -1. Server: run loop for waiting client connection |
19 |
| -2. Client: send packet with version (no frame) |
20 |
| -3. Server: check whether the version can be used from server (as of now) |
21 |
| -4. Client: send packet with Stream frame, data with "testData" (Server Ack) |
22 |
| -6. Client: send Ping (Server Ack as Pong) |
23 |
| -6. Client: send GoAway, reason with "This is GoAway reason" (Server Ack) |
24 |
| -6. Client: send ConnectionClose, reason with "This is Connection Close reason" (Server Ack) |
25 |
| -8. To be implemented |
| 7 | +# RUN example |
| 8 | +commands bellow can run server and client transferring application data. |
| 9 | +the `DEBUG=1` can show the packets exchanged between server and client. |
26 | 10 |
|
27 | 11 | ```sh
|
28 |
| ->> go run ./examples/main.go |
| 12 | +>> cd gQUIC/latest/example |
| 13 | +>> DEBUG=1 go run main.go |
29 | 14 | ```
|
30 | 15 |
|
31 |
| -#### TODO |
32 |
| -* Encryption |
33 |
| -* Connection negotiation |
| 16 | + |
34 | 17 |
|
35 | 18 | #### License
|
36 |
| -The MIT License (MIT) Copyright (c) 2015 ami-GS |
| 19 | +The MIT License (MIT) Copyright (c) 2018 ami-GS |
0 commit comments