]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - noshare.c
first pass
[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, char **ds_err, char **us_err,
18                        int can_upstream, int can_downstream)
19 {
20     return SHARE_NONE;
21 }
22
23 void platform_ssh_share_cleanup(const char *name)
24 {
25 }