Skip to content

Commit f911dc7

Browse files
committed
relpace legacy to latest
1 parent 435ce9a commit f911dc7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+5462
-5462
lines changed

README.md

+9-26
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,19 @@
1-
[![Build Status](https://travis-ci.org/ami-GS/gQUIC.svg?branch=master)](https://travis-ci.org/ami-GS/gQUIC)
2-
31
# gQUIC
42
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)
124

13-
#### RUN example
14-
Running example locally
5+
Implementing in separate directory, because this draft is really progressing comparing to my previous implementation.
156

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.
2610

2711
```sh
28-
>> go run ./examples/main.go
12+
>> cd gQUIC/latest/example
13+
>> DEBUG=1 go run main.go
2914
```
3015

31-
#### TODO
32-
* Encryption
33-
* Connection negotiation
16+
3417

3518
#### License
36-
The MIT License (MIT) Copyright (c) 2015 ami-GS
19+
The MIT License (MIT) Copyright (c) 2018 ami-GS

0 commit comments

Comments
 (0)