Update the readme

This commit is contained in:
Arlo Breault 2016-01-09 10:48:45 -08:00
parent 0711b3e1b9
commit 17fd424647

View file

@ -4,16 +4,33 @@ A Pluggable Transport using WebRTC
### Usage ### Usage
Open up four terminals: Open up six terminals:
**client:**
```
cd client/
go build
```
1. tor -f torrc SOCKSPort auto 1. tor -f torrc SOCKSPort auto
2. tail -F snowflake.log 2. cat > signal
3. cat > signal 3. tail -F snowflake.log
4. open proxy/snowflake.html
Look for the offer in terminal 2; copy and paste it into the browser window **server:**
opened from terminal 4. Copy and paste the browser to terminal 3.
At this point you should see some TLS garbage in the chat window. ```
cd server/
go build
```
4. tor -f torrc
5. cat > signal
6. tail -F snowflake.log
Look for the offer in terminal 3; copy and paste it into terminal 5.
Copy and paste the answer in terminal 6 to terminal 2.
At this point the tor client should bootstrap to 100%.
### More ### More