mirror of
https://github.com/mkj/dropbear.git
synced 2025-12-20 02:17:46 +08:00
Adding support for a per-client configuration file. Akin to the one provided by the OpenSSH client. This initial implementation is minimalistic with just basic support for a few options. * Default config file location is ~/.ssh/dropbear_config. Can't be customized. Not using `config` to avoid incompatibilities or worse - silent changes of bahvior in the ssh clients. * Added DROPBEAR_DEFAULT_USE_SSH_CONFIG complie directive. Currently the default is to build the client without config file support. Override in your localoptions.h * Manpage update. * .gitignore the .vscode folder - Visual Studio Code private files. tjk :)
34 lines
337 B
Plaintext
34 lines
337 B
Plaintext
*~
|
|
*.o
|
|
*.a
|
|
*.da
|
|
*.bb
|
|
*.bbg
|
|
*.prof
|
|
.*.swp
|
|
/obj
|
|
/autom4te.cache
|
|
/config.log
|
|
/config.status
|
|
/dbclient
|
|
/dropbear
|
|
/dropbearconvert
|
|
/dropbearkey
|
|
/dropbearmulti
|
|
/fuzzcorpus
|
|
/fuzzer-*
|
|
/fuzzer-*.options
|
|
/scp
|
|
/scp-progress
|
|
config.h
|
|
default_options_guard.h
|
|
localoptions.h
|
|
Makefile
|
|
tags
|
|
.pytest*
|
|
*.pyc
|
|
/test/venv/
|
|
/test/init/
|
|
/test/fakekey
|
|
.vscode/
|