1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 11:32:48 -05:00

Store default port number in each back end

[originally from svn r669]
This commit is contained in:
Simon Tatham
2000-10-04 14:35:15 +00:00
parent 1139bbddd0
commit 9a9bd54197
4 changed files with 7 additions and 3 deletions

View File

@ -115,6 +115,7 @@ typedef struct {
void (*special) (Telnet_Special code);
SOCKET (*socket) (void);
int (*sendok) (void);
int default_port;
} Backend;
GLOBAL Backend *back;