@@ -192,7 +192,6 @@ initialize_server_options(ServerOptions *options)
192
192
options -> hpn_disabled = -1 ;
193
193
options -> none_enabled = -1 ;
194
194
options -> nonemac_enabled = -1 ;
195
- options -> hpn_buffer_limit = -1 ;
196
195
options -> ip_qos_interactive = -1 ;
197
196
options -> ip_qos_bulk = -1 ;
198
197
options -> version_addendum = NULL ;
@@ -441,8 +440,6 @@ fill_default_server_options(ServerOptions *options)
441
440
}
442
441
if (options -> hpn_disabled == -1 )
443
442
options -> hpn_disabled = 0 ;
444
- if (options -> hpn_buffer_limit == -1 )
445
- options -> hpn_buffer_limit = 0 ;
446
443
if (options -> ip_qos_interactive == -1 )
447
444
options -> ip_qos_interactive = IPTOS_DSCP_AF21 ;
448
445
if (options -> ip_qos_bulk == -1 )
@@ -524,8 +521,7 @@ typedef enum {
524
521
sKerberosGetAFSToken , sPasswordAuthentication ,
525
522
sKbdInteractiveAuthentication , sListenAddress , sAddressFamily ,
526
523
sPrintMotd , sPrintLastLog , sIgnoreRhosts ,
527
- sNoneEnabled , sNoneMacEnabled , sHPNBufferLimit ,
528
- sTcpRcvBufPoll , sHPNDisabled ,
524
+ sNoneEnabled , sNoneMacEnabled , sTcpRcvBufPoll , sHPNDisabled ,
529
525
sX11Forwarding , sX11DisplayOffset , sX11UseLocalhost ,
530
526
sPermitTTY , sStrictModes , sEmptyPasswd , sTCPKeepAlive ,
531
527
sPermitUserEnvironment , sAllowTcpForwarding , sCompression ,
@@ -696,7 +692,6 @@ static struct {
696
692
{ "tcprcvbufpoll" , sTcpRcvBufPoll , SSHCFG_ALL },
697
693
{ "noneenabled" , sNoneEnabled , SSHCFG_ALL },
698
694
{ "nonemacenabled" , sNoneMacEnabled , SSHCFG_ALL },
699
- { "hpnbufferlimit" , sHPNBufferLimit , SSHCFG_ALL },
700
695
{ "kexalgorithms" , sKexAlgorithms , SSHCFG_GLOBAL },
701
696
{ "include" , sInclude , SSHCFG_ALL },
702
697
{ "ipqos" , sIPQoS , SSHCFG_ALL },
@@ -1576,10 +1571,6 @@ process_server_config_line_depth(ServerOptions *options, char *line,
1576
1571
intptr = & options -> nonemac_enabled ;
1577
1572
goto parse_flag ;
1578
1573
1579
- case sHPNBufferLimit :
1580
- intptr = & options -> hpn_buffer_limit ;
1581
- goto parse_flag ;
1582
-
1583
1574
case sHostbasedAuthentication :
1584
1575
intptr = & options -> hostbased_authentication ;
1585
1576
goto parse_flag ;
0 commit comments