mirror of https://github.com/wolfSSL/wolfssh.git
Bump Version
parent
f134754112
commit
cc46579db7
39
README
39
README
|
@ -186,8 +186,8 @@ allows the user to set up an encrypted connection for managing file systems.
|
||||||
To compile wolfSSH with SFTP support, use the `--enable-sftp` build option or
|
To compile wolfSSH with SFTP support, use the `--enable-sftp` build option or
|
||||||
define `WOLFSSH_SFTP`:
|
define `WOLFSSH_SFTP`:
|
||||||
|
|
||||||
$ ./configure --enable-sftp
|
$ ./configure --enable-sftp
|
||||||
$ make
|
$ make
|
||||||
|
|
||||||
For full API usage and implementation details, please see the wolfSSH User
|
For full API usage and implementation details, please see the wolfSSH User
|
||||||
Manual.
|
Manual.
|
||||||
|
@ -195,31 +195,28 @@ Manual.
|
||||||
The SFTP client created is located in the directory examples/sftpclient/ and the
|
The SFTP client created is located in the directory examples/sftpclient/ and the
|
||||||
server is ran using the same echoserver as with wolfSSH.
|
server is ran using the same echoserver as with wolfSSH.
|
||||||
|
|
||||||
src/wolfssh$ ./examples/sftpclient/wolfsftp
|
src/wolfssh$ ./examples/sftpclient/wolfsftp
|
||||||
|
|
||||||
A full list of supported commands can be seen with typeing "help" after a
|
A full list of supported commands can be seen with typeing "help" after a
|
||||||
connection.
|
connection.
|
||||||
|
|
||||||
|
|
||||||
```
|
wolfSSH sftp> help
|
||||||
wolfSSH sftp> help
|
|
||||||
|
|
||||||
|
Commands :
|
||||||
Commands :
|
cd <string> change directory
|
||||||
cd <string> change directory
|
chmod <mode> <path> change mode
|
||||||
chmod <mode> <path> change mode
|
get <remote file> <local file> pulls file(s) from server
|
||||||
get <remote file> <local file> pulls file(s) from server
|
ls list current directory
|
||||||
ls list current directory
|
mkdir <dir name> creates new directory on server
|
||||||
mkdir <dir name> creates new directory on server
|
put <local file> <remote file> push file(s) to server
|
||||||
put <local file> <remote file> push file(s) to server
|
pwd list current path
|
||||||
pwd list current path
|
quit exit
|
||||||
quit exit
|
rename <old> <new> renames remote file
|
||||||
rename <old> <new> renames remote file
|
reget <remote file> <local file> resume pulling file
|
||||||
reget <remote file> <local file> resume pulling file
|
reput <remote file> <local file> resume pushing file
|
||||||
reput <remote file> <local file> resume pushing file
|
<crtl + c> interrupt get/put cmd
|
||||||
<crtl + c> interrupt get/put cmd
|
|
||||||
```
|
|
||||||
|
|
||||||
An example of connecting to another system would be
|
An example of connecting to another system would be
|
||||||
|
|
||||||
src/wolfssh$ ./examples/sftpclient/wolfsftp -p 22 -u user -h 192.168.1.111
|
src/wolfssh$ ./examples/sftpclient/wolfsftp -p 22 -u user -h 192.168.1.111
|
||||||
|
|
31
README.md
31
README.md
|
@ -201,24 +201,21 @@ A full list of supported commands can be seen with typeing "help" after a
|
||||||
connection.
|
connection.
|
||||||
|
|
||||||
|
|
||||||
```
|
wolfSSH sftp> help
|
||||||
wolfSSH sftp> help
|
|
||||||
|
|
||||||
|
Commands :
|
||||||
Commands :
|
cd <string> change directory
|
||||||
cd <string> change directory
|
chmod <mode> <path> change mode
|
||||||
chmod <mode> <path> change mode
|
get <remote file> <local file> pulls file(s) from server
|
||||||
get <remote file> <local file> pulls file(s) from server
|
ls list current directory
|
||||||
ls list current directory
|
mkdir <dir name> creates new directory on server
|
||||||
mkdir <dir name> creates new directory on server
|
put <local file> <remote file> push file(s) to server
|
||||||
put <local file> <remote file> push file(s) to server
|
pwd list current path
|
||||||
pwd list current path
|
quit exit
|
||||||
quit exit
|
rename <old> <new> renames remote file
|
||||||
rename <old> <new> renames remote file
|
reget <remote file> <local file> resume pulling file
|
||||||
reget <remote file> <local file> resume pulling file
|
reput <remote file> <local file> resume pushing file
|
||||||
reput <remote file> <local file> resume pushing file
|
<crtl + c> interrupt get/put cmd
|
||||||
<crtl + c> interrupt get/put cmd
|
|
||||||
```
|
|
||||||
|
|
||||||
An example of connecting to another system would be
|
An example of connecting to another system would be
|
||||||
|
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
# Copyright (C) 2014-2018 wolfSSL Inc.
|
# Copyright (C) 2014-2018 wolfSSL Inc.
|
||||||
# All right reserved.
|
# All right reserved.
|
||||||
|
|
||||||
AC_COPYRIGHT([Copyright (C) 2014-2018 wolfSSL Inc.])
|
AC_COPYRIGHT([Copyright (C) 2014-2019 wolfSSL Inc.])
|
||||||
AC_INIT([wolfssh],[1.3.1],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
AC_INIT([wolfssh],[1.3.1],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
||||||
AC_PREREQ([2.63])
|
AC_PREREQ([2.63])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
: ${CFLAGS=""}
|
: ${CFLAGS=""}
|
||||||
# Test ar for the "U" option. Should be checked before the libtool macros.
|
# Test ar for the "U" option. Should be checked before the libtool macros.
|
||||||
xxx_ar_flags=$((ar --help) 2>&1)
|
xxx_ar_flags=$(ar --help 2>&1)
|
||||||
AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[: ${AR_FLAGS="Ucru"}])
|
AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[: ${AR_FLAGS="Ucru"}])
|
||||||
|
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
|
@ -20,7 +20,7 @@ AC_ARG_PROGRAM
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_HEADERS([src/config.h])
|
AC_CONFIG_HEADERS([src/config.h])
|
||||||
|
|
||||||
WOLFSSH_LIBRARY_VERSION=6:0:1
|
WOLFSSH_LIBRARY_VERSION=7:0:2
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
|
|
Loading…
Reference in New Issue