X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/2d129d8e8a31317a35f2ddf0a5a888fecbe3649b..5dc6132d3a8e6e4048698bf1914b486f9cf41e2c:/proxy.h diff --git a/proxy.h b/proxy.h index 6e641141..c79759c4 100644 --- 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; @@ -84,7 +84,7 @@ struct Socket_proxy_tag { 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;