aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2023-08-02 14:18:33 +0000
committerEd Maste <emaste@FreeBSD.org>2023-08-02 14:21:34 +0000
commita93cbba2deed209a30da1ecffa637bf5c61b7641 (patch)
tree35510554c31c4fe14327cd109f5db2fb80a911cb /crypto
parent5fd1da4d8501a30ae3848c19f24205d4ee1e43f6 (diff)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/openssh/readconf.c2
-rw-r--r--crypto/openssh/servconf.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/crypto/openssh/readconf.c b/crypto/openssh/readconf.c
index 2cbbe8d48522..616a6e8b9bd4 100644
--- a/crypto/openssh/readconf.c
+++ b/crypto/openssh/readconf.c
@@ -323,12 +323,14 @@ static struct {
{ "requiredrsasize", oRequiredRSASize },
{ "enableescapecommandline", oEnableEscapeCommandline },
+ /* HPN patch - retired in 60c59fad8806 */
{ "hpndisabled", oDeprecated },
{ "hpnbuffersize", oDeprecated },
{ "tcprcvbufpoll", oDeprecated },
{ "tcprcvbuf", oDeprecated },
{ "noneenabled", oUnsupported },
{ "noneswitch", oUnsupported },
+ /* Client VersionAddendum - retired in bffe60ead024 */
{ "versionaddendum", oDeprecated },
{ NULL, oBadOption }
diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c
index 53c3ee05b9cf..de45475dbc33 100644
--- a/crypto/openssh/servconf.c
+++ b/crypto/openssh/servconf.c
@@ -707,10 +707,13 @@ static struct {
{ "unusedconnectiontimeout", sUnusedConnectionTimeout, SSHCFG_ALL },
{ "useblacklist", sUseBlacklist, SSHCFG_GLOBAL },
{ "useblocklist", sUseBlacklist, SSHCFG_GLOBAL }, /* alias */
+
+ /* HPN patch - retired in 60c59fad8806 */
{ "noneenabled", sUnsupported, SSHCFG_ALL },
{ "hpndisabled", sDeprecated, SSHCFG_ALL },
{ "hpnbuffersize", sDeprecated, SSHCFG_ALL },
{ "tcprcvbufpoll", sDeprecated, SSHCFG_ALL },
+
{ NULL, sBadOption, 0 }
};