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

Diff for /src/usr.bin/ssh/readconf.c between version 1.7 and 1.8

version 1.7, 1999/09/30 08:03:39 version 1.8, 1999/10/03 21:50:03
Line 99 
Line 99 
   oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,    oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
   oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,    oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
   oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,    oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
   oBatchMode, oStrictHostKeyChecking, oCompression, oCompressionLevel,    oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression,
   oKeepAlives, oTISAuthentication    oCompressionLevel, oKeepAlives, oTISAuthentication
 } OpCodes;  } OpCodes;
   
 /* Textual representations of the tokens. */  /* Textual representations of the tokens. */
Line 141 
Line 141 
   { "userknownhostsfile", oUserKnownHostsFile },    { "userknownhostsfile", oUserKnownHostsFile },
   { "connectionattempts", oConnectionAttempts },    { "connectionattempts", oConnectionAttempts },
   { "batchmode", oBatchMode },    { "batchmode", oBatchMode },
     { "checkhostip", oCheckHostIP },
   { "stricthostkeychecking", oStrictHostKeyChecking },    { "stricthostkeychecking", oStrictHostKeyChecking },
   { "compression", oCompression },    { "compression", oCompression },
   { "compressionlevel", oCompressionLevel },    { "compressionlevel", oCompressionLevel },
Line 572 
Line 573 
   options->fallback_to_rsh = -1;    options->fallback_to_rsh = -1;
   options->use_rsh = -1;    options->use_rsh = -1;
   options->batch_mode = -1;    options->batch_mode = -1;
     options->check_host_ip = -1;
   options->strict_host_key_checking = -1;    options->strict_host_key_checking = -1;
   options->compression = -1;    options->compression = -1;
   options->keepalives = -1;    options->keepalives = -1;
Line 625 
Line 627 
     options->use_rsh = 0;      options->use_rsh = 0;
   if (options->batch_mode == -1)    if (options->batch_mode == -1)
     options->batch_mode = 0;      options->batch_mode = 0;
     if (options->check_host_ip == -1)
       options->check_host_ip = 1;
   if (options->strict_host_key_checking == -1)    if (options->strict_host_key_checking == -1)
     options->strict_host_key_checking = 2; /* 2 is default */      options->strict_host_key_checking = 2; /* 2 is default */
   if (options->compression == -1)    if (options->compression == -1)

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8