Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / testback.c
index 0175e8e..be1faf4 100644 (file)
 
 #include "putty.h"
 
-static const char *null_init(void *, void **, Config *, char *, int, char **,
+static const char *null_init(void *, void **, Conf *, char *, int, char **,
                             int, int);
-static const char *loop_init(void *, void **, Config *, char *, int, char **,
+static const char *loop_init(void *, void **, Conf *, char *, int, char **,
                             int, int);
 static void null_free(void *);
 static void loop_free(void *);
-static void null_reconfig(void *, Config *);
+static void null_reconfig(void *, Conf *);
 static int null_send(void *, char *, int);
 static int loop_send(void *, char *, int);
 static int null_sendbuffer(void *);
@@ -74,14 +74,14 @@ struct loop_state {
 };
 
 static const char *null_init(void *frontend_handle, void **backend_handle,
-                            Config *cfg, char *host, int port,
+                            Conf *conf, char *host, int port,
                             char **realhost, int nodelay, int keepalive) {
 
     return NULL;
 }
 
 static const char *loop_init(void *frontend_handle, void **backend_handle,
-                            Config *cfg, char *host, int port,
+                            Conf *conf, char *host, int port,
                             char **realhost, int nodelay, int keepalive) {
     struct loop_state *st = snew(struct loop_state);
 
@@ -101,7 +101,7 @@ static void loop_free(void *handle)
     sfree(handle);
 }
 
-static void null_reconfig(void *handle, Config *cfg) {
+static void null_reconfig(void *handle, Conf *conf) {
 
 }