Skip to content

Commit 6cefa48

Browse files
author
chaehni
authored
removed installation notice from READMEs (#48)
1 parent 1d4c6f0 commit 6cefa48

File tree

3 files changed

+3
-30
lines changed

3 files changed

+3
-30
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The applications are written in Go, with some supporting code in Python. A SCION
77
More information on [SCION](https://www.scion-architecture.net/), and [tutorials on how to set up SCION and SCIONLab](https://netsec-ethz.github.io/scion-tutorials/).
88

99
To build:
10-
1. run once the provided script `deps.sh` to setup the dependencies
10+
1. run once the provided script `deps.sh` to set up the dependencies
1111
2. run `make` to build all projects
1212

1313

bat/README.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,6 @@ Go implemented CLI cURL-like tool for humans. Bat can be used for testing, debug
77
This repository is a fork of [astaxie/bat](https://github.com/astaxie/bat) making it available for SCION/QUIC.
88
Refer to the original repository for general usage.
99

10-
### Installation
11-
12-
SCION infrastructure must be installed and running on your machine. Instructions on how to set this up can be found [here](https://github.com/netsec-ethz/netsec-scion).
13-
Clone the repository and install using:
14-
15-
```
16-
govendor sync
17-
govendor add +e
18-
go install
19-
```
20-
21-
If you experience problems with the `govendor` commands above:
22-
* Remove the contents and leave only the `vendor.json` file in the `vendor` folders in `scion-apps` and `bat` itself.
23-
* Go to the `scion-apps` directory and run `govendor sync`. You can now follow the instructions above again.
24-
2510
### Usage
2611

2712
In contrast to the original tool, we require a local SCION address.

lib/shttp/README.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
# HTTP over SCION/QUIC
22

3-
This repository contains a client/server implementation of HTTP/2 over SCION/QUIC.
4-
5-
### Setup
6-
7-
SCION infrastructure must be installed and running on your machine. Instructions on how to set this up can be found [here](https://github.com/netsec-ethz/netsec-scion).
8-
Clone the repository and install the dependencies:
9-
10-
```
11-
govendor sync
12-
govendor add +e
13-
```
14-
15-
Refer to the individual examples to see how to run them.
3+
This package contains a client/server implementation of HTTP/2 over SCION/QUIC.
164

175
### The Client is a standard net/http client with a custom RoundTripper implementation.
186

@@ -25,7 +13,7 @@ client := &http.Client{
2513
}
2614
```
2715

28-
where `lAddr` is the local SCION address of the client.
16+
where `LAddr` is the local SCION address of the client.
2917

3018
Then, make requests as usual:
3119
```Go

0 commit comments

Comments
 (0)