Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/defs.h
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2019-03-28 21:29:13 +0300
committerSimon Tatham <anakin@pobox.com>2019-03-28 21:29:13 +0300
commit8a884eaef931cbe1db16ed130a5bf0fdb2386456 (patch)
treef96c9852173a421aae599ed6d1c4fa7ff184a3b2 /defs.h
parent4d69032d2cc6991a6a2f410f041a8c9541e68598 (diff)
Start of an SSH-server-specific config structure.
This is much simpler than Conf, because I don't expect to have to copy it around, load or save it to disk (or the Windows registry), or serialise it between processes. So it can be a straightforward struct. As yet there's nothing actually _in_ it. I've just created the structure and arranged to pass it through to all the SSH layers. But now it's here, it will be a place I can add configuration items as I find I need them.
Diffstat (limited to 'defs.h')
-rw-r--r--defs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/defs.h b/defs.h
index 6c37b99c..e9050cf9 100644
--- a/defs.h
+++ b/defs.h
@@ -79,6 +79,7 @@ typedef struct MontgomeryPoint MontgomeryPoint;
typedef struct EdwardsCurve EdwardsCurve;
typedef struct EdwardsPoint EdwardsPoint;
+typedef struct SshServerConfig SshServerConfig;
typedef struct SftpServer SftpServer;
typedef struct SftpServerVtable SftpServerVtable;