Skip to content

Commit 7f80432

Browse files
tjkolevmkj
authored andcommitted
Fixed broken links.
tjk :)
1 parent b050fec commit 7f80432

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DEVELOPING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
#### Building
44

55
See [INSTALL.md](INSTALL.md) for build instructions.
6-
[SMALL.md](SMALL.md) has hints for building smaller binaries, also see comments in [default_options.h](./default_options.h).
6+
[SMALL.md](SMALL.md) has hints for building smaller binaries, also see comments in [default_options.h](./src/default_options.h).
77

88
To be able to debug add `-g` compiler option to the `CFLAGS` environment variable. This will generate debug symbols.
99
```
1010
export CFLAGS="$CFLAGS -g"
1111
```
1212

1313
#### File dependencies
14-
The GitHub [test build script](./github/workflows/build.yml) requires the [default_options.h](./default_options.h) be at the top of the repository tree. The script uses the file to generate localoptions.h with various features enabled/disabled.
14+
The GitHub [test build script](./.github/workflows/build.yml) requires the [default_options.h](./src/default_options.h) be at the top of the repository tree. The script uses the file to generate localoptions.h with various features enabled/disabled.
1515

1616
Following are generated files in the format \<target\>: \<generator\>(\<source\>)
1717
```
@@ -35,7 +35,7 @@ Most cryptography requires a good random entropy source, both to generate secret
3535

3636
Default algorithm lists are specified in [common-algo.c](./src/common-algo.c). They are in priority order, the client's first matching choice is used (see [rfc4253](https://www.rfc-editor.org/rfc/rfc4253.html)). Dropbear client has `-c` and `-m` arguments to choose which are enabled at runtime (doesn't work for server as of June 2020).
3737

38-
Enabling/disabling algorithms is done in [localoptions.h](./localoptions.h), see [default_options.h](./default_options.h).
38+
Enabling/disabling algorithms is done in [localoptions.h](./localoptions.h), see [default_options.h](./src/default_options.h).
3939

4040
#### Style
4141

@@ -59,4 +59,4 @@ Dropbear server will run fine as a non-root user, allowing logins only for that
5959

6060
#### Connection setup
6161

62-
Dropbear implements `first_kex_packet_follows` to reduce handshake latency (rfc 4253 7.1)[https://www.rfc-editor.org/rfc/rfc4253.html#section-7.1]. Some less common implementations don't handle that - it can be a cause of problems connecting. Note also that Dropbear may send several ssh packets within a single TCP packet - it's just a stream.
62+
Dropbear implements `first_kex_packet_follows` to reduce handshake latency [RFC 4253 7.1](https://www.rfc-editor.org/rfc/rfc4253.html#section-7.1). Some less common implementations don't handle that - it can be a cause of problems connecting. Note also that Dropbear may send several ssh packets within a single TCP packet - it's just a stream.

0 commit comments

Comments
 (0)