OSDN Git Service

Enhance all settings encryption.
[ffftp/ffftp.git] / putty / TESTBACK.C
index 0dd26d9..5f9f1e8 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: testback.c 7628 2007-06-30 21:56:44Z jacob $ */\r
+/* $Id: testback.c 9214 2011-07-14 18:52:21Z simon $ */\r
 /*\r
  * Copyright (c) 1999 Simon Tatham\r
  * Copyright (c) 1999 Ben Harris\r
 \r
 #include "putty.h"\r
 \r
-static const char *null_init(void *, void **, Config *, char *, int, char **,\r
+static const char *null_init(void *, void **, Conf *, char *, int, char **,\r
                             int, int);\r
-static const char *loop_init(void *, void **, Config *, char *, int, char **,\r
+static const char *loop_init(void *, void **, Conf *, char *, int, char **,\r
                             int, int);\r
 static void null_free(void *);\r
 static void loop_free(void *);\r
-static void null_reconfig(void *, Config *);\r
+static void null_reconfig(void *, Conf *);\r
 static int null_send(void *, char *, int);\r
 static int loop_send(void *, char *, int);\r
 static int null_sendbuffer(void *);\r
@@ -74,14 +74,14 @@ struct loop_state {
 };\r
 \r
 static const char *null_init(void *frontend_handle, void **backend_handle,\r
-                            Config *cfg, char *host, int port,\r
+                            Conf *conf, char *host, int port,\r
                             char **realhost, int nodelay, int keepalive) {\r
 \r
     return NULL;\r
 }\r
 \r
 static const char *loop_init(void *frontend_handle, void **backend_handle,\r
-                            Config *cfg, char *host, int port,\r
+                            Conf *conf, char *host, int port,\r
                             char **realhost, int nodelay, int keepalive) {\r
     struct loop_state *st = snew(struct loop_state);\r
 \r
@@ -101,7 +101,7 @@ static void loop_free(void *handle)
     sfree(handle);\r
 }\r
 \r
-static void null_reconfig(void *handle, Config *cfg) {\r
+static void null_reconfig(void *handle, Conf *conf) {\r
 \r
 }\r
 \r