mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-18 11:31:00 -05:00
Rename SocketPeerInfo to SocketEndpointInfo.
I'm preparing to be able to ask about the other end of the connection too, so the first step is to give this data structure a neutral name that can refer to either. No functional change yet.
This commit is contained in:
@ -156,7 +156,7 @@ bool ssh2_connection_parse_global_request(
|
||||
PktOut *ssh2_portfwd_chanopen(
|
||||
struct ssh2_connection_state *s, struct ssh2_channel *c,
|
||||
const char *hostname, int port,
|
||||
const char *description, const SocketPeerInfo *peerinfo)
|
||||
const char *description, const SocketEndpointInfo *peerinfo)
|
||||
{
|
||||
PacketProtocolLayer *ppl = &s->ppl; /* for ppl_logevent */
|
||||
PktOut *pktout;
|
||||
@ -321,7 +321,7 @@ SshChannel *ssh2_session_open(ConnectionLayer *cl, Channel *chan)
|
||||
}
|
||||
|
||||
SshChannel *ssh2_serverside_x11_open(
|
||||
ConnectionLayer *cl, Channel *chan, const SocketPeerInfo *pi)
|
||||
ConnectionLayer *cl, Channel *chan, const SocketEndpointInfo *pi)
|
||||
{
|
||||
unreachable("Should never be called in the client");
|
||||
}
|
||||
|
Reference in New Issue
Block a user