Skip to content

Commit bb6e6e2

Browse files
authored
Merge pull request #374 from JacobBarthelmeh/release
2 parents d917ec6 + ba99ddd commit bb6e6e2

54 files changed

Lines changed: 151 additions & 122 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ChangeLog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# wolfSSH v1.4.8 (Nov 4, 2021)
2+
3+
## New Feature Additions and Improvements
4+
5+
- Add remote port forwarding
6+
- Make loading user created keys into the examples easier
7+
- Add --with-wolfssl and use --prefix to look for wolfSSL
8+
- Updated the unsupported GlobalReq response
9+
10+
11+
## Fixes
12+
13+
- Fix for RSA public key auth
14+
- When decoding SFTP messages, fix the size checks so they don't wrap
15+
- Fix an issue where the testsuite and echoserver a socket failure
16+
- SFTP fix for getting attribute header
17+
- Fix for possible null dereference in SendKexDhReply
18+
- Remove reference to udp from test.h
19+
- Fixes to local port forwarding
20+
121
# wolfSSH v1.4.7 (July 23, 2021)
222

323
## New Feature Additions and Improvements

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# All right reserved.
44

55
AC_COPYRIGHT([Copyright (C) 2014-2020 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.4.7],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.8],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
77
AC_PREREQ([2.63])
88
AC_CONFIG_AUX_DIR([build-aux])
99

@@ -18,7 +18,7 @@ AC_ARG_PROGRAM
1818
AC_CONFIG_MACRO_DIR([m4])
1919
AC_CONFIG_HEADERS([src/config.h])
2020

21-
WOLFSSH_LIBRARY_VERSION=12:2:3
21+
WOLFSSH_LIBRARY_VERSION=12:3:3
2222
# | | |
2323
# +------+ | +---+
2424
# | | |

examples/client/client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* client.c
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*

examples/client/client.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* client.h
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*

examples/echoserver/echoserver.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* echoserver.c
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*
@@ -606,7 +606,7 @@ static int ssh_worker(thread_ctx_t* threadCtx)
606606
#ifdef WOLFSSH_SHELL
607607
const char *userName;
608608
struct passwd *p_passwd;
609-
WS_SOCKET_T childFd;
609+
WS_SOCKET_T childFd = 0;
610610
pid_t childPid;
611611
#endif
612612
#if defined(WOLFSSL_PTHREADS) && defined(WOLFSSL_TEST_GLOBAL_REQ)

examples/echoserver/echoserver.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* echoserver.h
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*

examples/portfwd/portfwd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* portfwd.c
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*

examples/portfwd/wolfssh_portfwd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* wolfssh_portfwd.h
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*

examples/scpclient/scpclient.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* scpclient.c
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*

examples/scpclient/scpclient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* scpclient.h
22
*
3-
* Copyright (C) 2014-2020 wolfSSL Inc.
3+
* Copyright (C) 2014-2021 wolfSSL Inc.
44
*
55
* This file is part of wolfSSH.
66
*

0 commit comments

Comments
 (0)