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

Diff for /src/usr.bin/ssh/mux.c between version 1.43 and 1.44

version 1.43, 2013/06/05 02:07:29 version 1.44, 2013/07/12 00:19:58
Line 617 
Line 617 
         Forward fwd;          Forward fwd;
         char *fwd_desc = NULL;          char *fwd_desc = NULL;
         u_int ftype;          u_int ftype;
           u_int lport, cport;
         int i, ret = 0, freefwd = 1;          int i, ret = 0, freefwd = 1;
   
         fwd.listen_host = fwd.connect_host = NULL;          fwd.listen_host = fwd.connect_host = NULL;
         if (buffer_get_int_ret(&ftype, m) != 0 ||          if (buffer_get_int_ret(&ftype, m) != 0 ||
             (fwd.listen_host = buffer_get_string_ret(m, NULL)) == NULL ||              (fwd.listen_host = buffer_get_string_ret(m, NULL)) == NULL ||
             buffer_get_int_ret(&fwd.listen_port, m) != 0 ||              buffer_get_int_ret(&lport, m) != 0 ||
             (fwd.connect_host = buffer_get_string_ret(m, NULL)) == NULL ||              (fwd.connect_host = buffer_get_string_ret(m, NULL)) == NULL ||
             buffer_get_int_ret(&fwd.connect_port, m) != 0) {              buffer_get_int_ret(&cport, m) != 0 ||
               lport > 65535 || cport > 65535) {
                 error("%s: malformed message", __func__);                  error("%s: malformed message", __func__);
                 ret = -1;                  ret = -1;
                 goto out;                  goto out;
         }          }
           fwd.listen_port = lport;
           fwd.connect_port = cport;
         if (*fwd.listen_host == '\0') {          if (*fwd.listen_host == '\0') {
                 free(fwd.listen_host);                  free(fwd.listen_host);
                 fwd.listen_host = NULL;                  fwd.listen_host = NULL;
Line 765 
Line 768 
         const char *error_reason = NULL;          const char *error_reason = NULL;
         u_int ftype;          u_int ftype;
         int i, listen_port, ret = 0;          int i, listen_port, ret = 0;
           u_int lport, cport;
   
         fwd.listen_host = fwd.connect_host = NULL;          fwd.listen_host = fwd.connect_host = NULL;
         if (buffer_get_int_ret(&ftype, m) != 0 ||          if (buffer_get_int_ret(&ftype, m) != 0 ||
             (fwd.listen_host = buffer_get_string_ret(m, NULL)) == NULL ||              (fwd.listen_host = buffer_get_string_ret(m, NULL)) == NULL ||
             buffer_get_int_ret(&fwd.listen_port, m) != 0 ||              buffer_get_int_ret(&lport, m) != 0 ||
             (fwd.connect_host = buffer_get_string_ret(m, NULL)) == NULL ||              (fwd.connect_host = buffer_get_string_ret(m, NULL)) == NULL ||
             buffer_get_int_ret(&fwd.connect_port, m) != 0) {              buffer_get_int_ret(&cport, m) != 0 ||
               lport > 65535 || cport > 65535) {
                 error("%s: malformed message", __func__);                  error("%s: malformed message", __func__);
                 ret = -1;                  ret = -1;
                 goto out;                  goto out;
         }          }
           fwd.listen_port = lport;
           fwd.connect_port = cport;
   
         if (*fwd.listen_host == '\0') {          if (*fwd.listen_host == '\0') {
                 free(fwd.listen_host);                  free(fwd.listen_host);

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44