Skip to content

Commit d9a19dc

Browse files
N2D4juagargi
authored andcommitted
UDP mode for netcat (#72)
* Add UDP mode * -c, -k and -K commands Currently -c is broken for UDP * Add new verbose debug messages for netcat * Reimplemented -local flag
1 parent eb85437 commit d9a19dc

File tree

4 files changed

+465
-77
lines changed

4 files changed

+465
-77
lines changed

netcat/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@ A SCION port of the netcat process.
33

44

55
## Usage
6-
```./netcat <host> <port>```
6+
```
7+
./netcat <host> <port>
8+
./netcat -l <port>
9+
```
10+
11+
Remember to generate a TLS certificate first (this will generate them in the current working directory):
12+
```
13+
openssl req -newkey rsa:2048 -nodes -keyout ./key.pem -x509 -days 365 -out ./certificate.pem
14+
```
715

816
See `./netcat -h` for more.
917

0 commit comments

Comments
 (0)