]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - noshare.c
Implement connection sharing between instances of PuTTY.
[PuTTY.git] / noshare.c
1 /*
2  * Stub implementation of SSH connection-sharing IPC, for any
3  * platform which can't support it at all.
4  */
5
6 #include <stdio.h>
7 #include <assert.h>
8 #include <errno.h>
9
10 #include "tree234.h"
11 #include "putty.h"
12 #include "ssh.h"
13 #include "network.h"
14
15 int platform_ssh_share(const char *name, Conf *conf,
16                        Plug downplug, Plug upplug, Socket *sock,
17                        char **logtext)
18 {
19     return SHARE_NONE;
20 }
21
22 void platform_ssh_share_cleanup(const char *name)
23 {
24 }