[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.140 and 1.140.2.1

version 1.140, 2005/03/10 22:01:05 version 1.140.2.1, 2005/09/04 18:40:03
Line 191 
Line 191 
         if (options->use_login == -1)          if (options->use_login == -1)
                 options->use_login = 0;                  options->use_login = 0;
         if (options->compression == -1)          if (options->compression == -1)
                 options->compression = 1;                  options->compression = COMP_DELAYED;
         if (options->allow_tcp_forwarding == -1)          if (options->allow_tcp_forwarding == -1)
                 options->allow_tcp_forwarding = 1;                  options->allow_tcp_forwarding = 1;
         if (options->gateway_ports == -1)          if (options->gateway_ports == -1)
Line 363 
Line 363 
 static void  static void
 add_listen_addr(ServerOptions *options, char *addr, u_short port)  add_listen_addr(ServerOptions *options, char *addr, u_short port)
 {  {
         int i;          u_int i;
   
         if (options->num_ports == 0)          if (options->num_ports == 0)
                 options->ports[options->num_ports++] = SSH_DEFAULT_PORT;                  options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
Line 403 
Line 403 
     const char *filename, int linenum)      const char *filename, int linenum)
 {  {
         char *cp, **charptr, *arg, *p;          char *cp, **charptr, *arg, *p;
         int *intptr, value, i, n;          int *intptr, value, n;
         ServerOpCodes opcode;          ServerOpCodes opcode;
         u_short port;          u_short port;
           u_int i;
   
         cp = line;          cp = line;
         arg = strdelim(&cp);          arg = strdelim(&cp);
Line 475 
Line 476 
                 if (arg == NULL || *arg == '\0')                  if (arg == NULL || *arg == '\0')
                         fatal("%s line %d: missing address",                          fatal("%s line %d: missing address",
                             filename, linenum);                              filename, linenum);
                   /* check for bare IPv6 address: no "[]" and 2 or more ":" */
                   if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
                       && strchr(p+1, ':') != NULL) {
                           add_listen_addr(options, arg, 0);
                           break;
                   }
                 p = hpdelim(&arg);                  p = hpdelim(&arg);
                 if (p == NULL)                  if (p == NULL)
                         fatal("%s line %d: bad address:port usage",                          fatal("%s line %d: bad address:port usage",
Line 491 
Line 498 
   
         case sAddressFamily:          case sAddressFamily:
                 arg = strdelim(&cp);                  arg = strdelim(&cp);
                   if (!arg || *arg == '\0')
                           fatal("%s line %d: missing address family.",
                               filename, linenum);
                 intptr = &options->address_family;                  intptr = &options->address_family;
                 if (options->listen_addrs != NULL)                  if (options->listen_addrs != NULL)
                         fatal("%s line %d: address family must be specified before "                          fatal("%s line %d: address family must be specified before "
Line 680 
Line 690 
   
         case sCompression:          case sCompression:
                 intptr = &options->compression;                  intptr = &options->compression;
                 goto parse_flag;                  arg = strdelim(&cp);
                   if (!arg || *arg == '\0')
                           fatal("%s line %d: missing yes/no/delayed "
                               "argument.", filename, linenum);
                   value = 0;      /* silence compiler */
                   if (strcmp(arg, "delayed") == 0)
                           value = COMP_DELAYED;
                   else if (strcmp(arg, "yes") == 0)
                           value = COMP_ZLIB;
                   else if (strcmp(arg, "no") == 0)
                           value = COMP_NONE;
                   else
                           fatal("%s line %d: Bad yes/no/delayed "
                               "argument: %s", filename, linenum, arg);
                   if (*intptr == -1)
                           *intptr = value;
                   break;
   
         case sGatewayPorts:          case sGatewayPorts:
                 intptr = &options->gateway_ports;                  intptr = &options->gateway_ports;

Legend:
Removed from v.1.140  
changed lines
  Added in v.1.140.2.1