Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/multi-compiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
CXX: ${{ matrix.cxx }}
run: |
./autogen.sh
./configure CFLAGS="-Wall -Wextra -Wpedantic"
./configure --enable-sshclient CFLAGS="-Wall -Wextra -Wpedantic"
make -j$(nproc)

- name: Make dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sshd-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
os: [ ubuntu-latest ]
wolfssl: ${{ fromJson(needs.create_matrix.outputs['versions']) }}
mldsa: [ 'yes', 'no' ]
name: Build and test wolfsshd
name: Build and test the wolfsshd and wolfssh apps
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
Expand Down
10 changes: 9 additions & 1 deletion apps/wolfssh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,18 @@ Phase 2 is going to bring reading the config files `/etc/ssh/ssh_config` and
`$HOME/.ssh/config`. It will handle OpenSSH style modern keys. It will also
have support for SSH-AGENT and forwarding.

Every session, terminal or command, runs its I/O on threads, so the client
needs a threaded wolfSSL. Configuring `--enable-sshclient` against a
single-threaded wolfSSL is an error, and `--enable-all` leaves the client out
rather than failing.

Command Line Options
--------------------

-E logfile : Specify a different log file.
-E logfile : Append the log to this file instead of stderr, and turn
logging on. The log is empty unless the library has
logging compiled in, with `--enable-debug` or
`--enable-sshd`.
-G : Print out the configuration as used.
-l login_name : Overrides the login name specified in the destination.
-p port : Overrides the destination port number.
Expand Down
Loading
Loading