[BACK]Return to servconf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/servconf.c between version 1.406 and 1.407

version 1.406, 2024/05/17 00:30:24 version 1.407, 2024/05/17 01:17:40
Line 500 
Line 500 
         sAllowStreamLocalForwarding, sFingerprintHash, sDisableForwarding,          sAllowStreamLocalForwarding, sFingerprintHash, sDisableForwarding,
         sExposeAuthInfo, sRDomain, sPubkeyAuthOptions, sSecurityKeyProvider,          sExposeAuthInfo, sRDomain, sPubkeyAuthOptions, sSecurityKeyProvider,
         sRequiredRSASize, sChannelTimeout, sUnusedConnectionTimeout,          sRequiredRSASize, sChannelTimeout, sUnusedConnectionTimeout,
         sSshdMonitorPath,          sSshdSessionPath,
         sDeprecated, sIgnore, sUnsupported          sDeprecated, sIgnore, sUnsupported
 } ServerOpCodes;  } ServerOpCodes;
   
Line 647 
Line 647 
         { "requiredrsasize", sRequiredRSASize, SSHCFG_ALL },          { "requiredrsasize", sRequiredRSASize, SSHCFG_ALL },
         { "channeltimeout", sChannelTimeout, SSHCFG_ALL },          { "channeltimeout", sChannelTimeout, SSHCFG_ALL },
         { "unusedconnectiontimeout", sUnusedConnectionTimeout, SSHCFG_ALL },          { "unusedconnectiontimeout", sUnusedConnectionTimeout, SSHCFG_ALL },
         { "sshdmonitorpath", sSshdMonitorPath, SSHCFG_GLOBAL },          { "sshdsessionpath", sSshdSessionPath, SSHCFG_GLOBAL },
         { NULL, sBadOption, 0 }          { NULL, sBadOption, 0 }
 };  };
   
Line 2442 
Line 2442 
                 }                  }
                 goto parse_time;                  goto parse_time;
   
         case sSshdMonitorPath:          case sSshdSessionPath:
                 charptr = &options->sshd_session_path;                  charptr = &options->sshd_session_path;
                 goto parse_filename;                  goto parse_filename;
   
Line 3011 
Line 3011 
         dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms);          dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms);
         dump_cfg_string(sPubkeyAcceptedAlgorithms, o->pubkey_accepted_algos);          dump_cfg_string(sPubkeyAcceptedAlgorithms, o->pubkey_accepted_algos);
         dump_cfg_string(sRDomain, o->routing_domain);          dump_cfg_string(sRDomain, o->routing_domain);
         dump_cfg_string(sSshdMonitorPath, o->sshd_session_path);          dump_cfg_string(sSshdSessionPath, o->sshd_session_path);
   
         /* string arguments requiring a lookup */          /* string arguments requiring a lookup */
         dump_cfg_string(sLogLevel, log_level_name(o->log_level));          dump_cfg_string(sLogLevel, log_level_name(o->log_level));

Legend:
Removed from v.1.406  
changed lines
  Added in v.1.407