[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.265 and 1.266

version 1.265, 2017/10/13 21:13:54 version 1.266, 2017/10/25 00:17:08
Line 546 
Line 546 
         return ssh->local_port;          return ssh->local_port;
 }  }
   
   /* Returns the routing domain of the input socket, or NULL if unavailable */
   const char *
   ssh_packet_rdomain_in(struct ssh *ssh)
   {
           if (ssh->rdomain_in != NULL)
                   return ssh->rdomain_in;
           if (!ssh_packet_connection_is_on_socket(ssh))
                   return NULL;
           ssh->rdomain_in = get_rdomain(ssh->state->connection_in);
           return ssh->rdomain_in;
   }
   
 /* Closes the connection and clears and frees internal data structures. */  /* Closes the connection and clears and frees internal data structures. */
   
 static void  static void

Legend:
Removed from v.1.265  
changed lines
  Added in v.1.266