X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/e8fa8f62da443bfc89c416d3eeafcde69c8c6403..f85e6f6edb2c9415bc10bd2015479d72ea8c5ae2:/network.h diff --git a/network.h b/network.h index 657bdcb2..cb077fdb 100644 --- a/network.h +++ b/network.h @@ -25,6 +25,10 @@ typedef struct SockAddr_tag *SockAddr; typedef struct socket_function_table **Socket; typedef struct plug_function_table **Plug; +#ifndef OSSOCKET_DEFINED +typedef void *OSSocket; +#endif + struct socket_function_table { Plug(*plug) (Socket s, Plug p); /* use a different plug (return the old one) */ @@ -38,12 +42,12 @@ struct socket_function_table { void *(*get_private_ptr) (Socket s); void (*set_frozen) (Socket s, int is_frozen); /* ignored by tcp, but vital for ssl */ - char *(*socket_error) (Socket s); + const char *(*socket_error) (Socket s); }; struct plug_function_table { int (*closing) - (Plug p, char *error_msg, int error_code, int calling_back); + (Plug p, const char *error_msg, int error_code, int calling_back); /* error_msg is NULL iff it is not an error (ie it closed normally) */ /* calling_back != 0 iff there is a Plug function */ /* currently running (would cure the fixme in try_send()) */ @@ -64,13 +68,15 @@ struct plug_function_table { * on a socket is cleared or partially cleared. The new backlog * size is passed in the `bufsize' parameter. */ - int (*accepting)(Plug p, void *sock); + int (*accepting)(Plug p, OSSocket sock); /* * returns 0 if the host at address addr is a valid host for connecting or error */ }; /* proxy indirection layer */ +/* NB, control of 'addr' is passed via new_connection, which takes + * responsibility for freeing it */ Socket new_connection(SockAddr addr, char *hostname, int port, int privport, int oobinline, int nodelay, Plug plug, @@ -80,6 +86,13 @@ Socket new_listener(char *srcaddr, int port, Plug plug, int local_host_only, SockAddr name_lookup(char *host, int port, char **canonicalname, const Config *cfg); +/* platform-dependent callback from new_connection() */ +/* (same caveat about addr as new_connection()) */ +Socket platform_new_connection(SockAddr addr, char *hostname, + int port, int privport, + int oobinline, int nodelay, Plug plug, + const Config *cfg); + /* socket functions */ void sk_init(void); /* called once at program startup */ @@ -95,12 +108,14 @@ int sk_addrtype(SockAddr addr); void sk_addrcopy(SockAddr addr, char *buf); void sk_addr_free(SockAddr addr); +/* NB, control of 'addr' is passed via sk_new, which takes responsibility + * for freeing it, as for new_connection() */ Socket sk_new(SockAddr addr, int port, int privport, int oobinline, int nodelay, Plug p); Socket sk_newlistener(char *srcaddr, int port, Plug plug, int local_host_only); -Socket sk_register(void *sock, Plug plug); +Socket sk_register(OSSocket sock, Plug plug); #define sk_plug(s,p) (((*s)->plug) (s, p)) #define sk_close(s) (((*s)->close) (s)) @@ -130,7 +145,7 @@ Socket sk_register(void *sock, Plug plug); * if there's a problem. These functions extract an error message, * or return NULL if there's no problem. */ -char *sk_addr_error(SockAddr addr); +const char *sk_addr_error(SockAddr addr); #define sk_socket_error(s) (((*s)->socket_error) (s)) /*