]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - proxy.h
Fix a couple of stupid typos in the session-saving code.
[PuTTY.git] / proxy.h
diff --git a/proxy.h b/proxy.h
index 6e6411413bfa323f6f163848feb5afc6ebfab8d0..cc11061efa59fc6bb14be0a52cb3786a6d88255e 100644 (file)
--- a/proxy.h
+++ b/proxy.h
@@ -16,7 +16,7 @@
 typedef struct Socket_proxy_tag * Proxy_Socket;
 
 struct Socket_proxy_tag {
-    struct socket_function_table *fn;
+    const struct socket_function_table *fn;
     /* the above variable absolutely *must* be the first in this structure */
 
     char * error;
@@ -79,12 +79,14 @@ struct Socket_proxy_tag {
     /* accepting */
     void *accepting_sock;
 
+    /* configuration, used to look up proxy settings */
+    Config cfg;
 };
 
 typedef struct Plug_proxy_tag * Proxy_Plug;
 
 struct Plug_proxy_tag {
-    struct plug_function_table *fn;
+    const struct plug_function_table *fn;
     /* the above variable absolutely *must* be the first in this structure */
 
     Proxy_Socket proxy_socket;