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

Diff for /src/usr.bin/ssh/packet.c between version 1.286 and 1.287

version 1.286, 2019/06/28 13:35:04 version 1.287, 2019/12/16 13:58:53
Line 505 
Line 505 
                         ssh->local_ipaddr = get_local_ipaddr(sock);                          ssh->local_ipaddr = get_local_ipaddr(sock);
                         ssh->local_port = get_local_port(sock);                          ssh->local_port = get_local_port(sock);
                 } else {                  } else {
                         ssh->remote_ipaddr = strdup("UNKNOWN");                          ssh->remote_ipaddr = xstrdup("UNKNOWN");
                         ssh->remote_port = 65535;                          ssh->remote_port = 65535;
                         ssh->local_ipaddr = strdup("UNKNOWN");                          ssh->local_ipaddr = xstrdup("UNKNOWN");
                         ssh->local_port = 65535;                          ssh->local_port = 65535;
                 }                  }
         }          }

Legend:
Removed from v.1.286  
changed lines
  Added in v.1.287