X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-sys%2Fmutt_tunnel.c;h=8af79f8dcbe39aa8a2b7afe14722335b979da046;hp=b74c5c5e1f9d7a9ce37a1f094336d05a1c39fca8;hb=bb8c11821cc88fef9da474587cc42e0f7554cf28;hpb=d04295aaf918032c1c2fafc94ddf637cf23341e9 diff --git a/lib-sys/mutt_tunnel.c b/lib-sys/mutt_tunnel.c index b74c5c5..8af79f8 100644 --- a/lib-sys/mutt_tunnel.c +++ b/lib-sys/mutt_tunnel.c @@ -8,26 +8,20 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif +#include #include #include #include -#include -#include -#include -#include -#include -#include +#include #include "mutt.h" #include "exit.h" #include "mutt_socket.h" #include "mutt_tunnel.h" +#include "mutt_signal.h" /* -- data types -- */ typedef struct { @@ -39,9 +33,9 @@ typedef struct { /* forward declarations */ static int tunnel_socket_open (CONNECTION *); static int tunnel_socket_close (CONNECTION *); -static int tunnel_socket_read (CONNECTION * conn, char *buf, size_t len); +static int tunnel_socket_read (CONNECTION * conn, char *buf, ssize_t len); static int tunnel_socket_write (CONNECTION * conn, const char *buf, - size_t len); + ssize_t len); /* -- public functions -- */ int mutt_tunnel_socket_setup (CONNECTION * conn) @@ -135,7 +129,7 @@ static int tunnel_socket_close (CONNECTION * conn) return 0; } -static int tunnel_socket_read (CONNECTION * conn, char *buf, size_t len) +static int tunnel_socket_read (CONNECTION * conn, char *buf, ssize_t len) { TUNNEL_DATA *tunnel = (TUNNEL_DATA *) conn->sockdata; int rc; @@ -151,7 +145,7 @@ static int tunnel_socket_read (CONNECTION * conn, char *buf, size_t len) } static int tunnel_socket_write (CONNECTION * conn, const char *buf, - size_t len) + ssize_t len) { TUNNEL_DATA *tunnel = (TUNNEL_DATA *) conn->sockdata; int rc;