From: Dave West Date: Sat, 24 Oct 2009 16:36:58 +0000 (+0000) Subject: SVN lost this file so I re-added it. X-Git-Tag: v7.86~711 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=bdde833a0d55b6927998072af8d70a12e5c0c66d SVN lost this file so I re-added it. --- diff --git a/citadel/utillib/ipc_c_tcp.c b/citadel/utillib/ipc_c_tcp.c new file mode 100644 index 000000000..811aa876b --- /dev/null +++ b/citadel/utillib/ipc_c_tcp.c @@ -0,0 +1,72 @@ +/* + * $Id: ipc_c_tcp.c -1 $ + * + * Client-side IPC functions + * + */ + + +#include "sysdep.h" +#undef NDEBUG +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "citadel.h" +#include "citadel_ipc.h" +#include "citadel_decls.h" +#ifndef HAVE_SNPRINTF +#include "snprintf.h" +#endif +#include "commands.h" + +/* Note that some of these functions may not work with multiple instances. */ + +static void (*deathHook)(void) = NULL; +int (*error_printf)(char *s, ...) = (int (*)(char *, ...))printf; + +void setIPCDeathHook(void (*hook)(void)) { + deathHook = hook; +} + +void setIPCErrorPrintf(int (*func)(char *s, ...)) { + error_printf = func; +} + +void connection_died(CtdlIPC* ipc, int using_ssl) { + if (deathHook != NULL) { + deathHook(); + } + + stty_ctdl(SB_RESTORE); + fprintf(stderr, "\r\n\n\n"); + fprintf(stderr, "Your connection to %s is broken.\n", ipc->ServInfo.humannode); + +#ifdef HAVE_OPENSSL + if (using_ssl) { + fprintf(stderr, "Last error: %s\n", ERR_reason_error_string(ERR_get_error())); + SSL_free(ipc->ssl); + ipc->ssl = NULL; + } else +#endif + fprintf(stderr, "Last error: %s\n", strerror(errno)); + + fprintf(stderr, "Please re-connect and log in again.\n"); + fflush(stderr); + fflush(stdout); + shutdown(ipc->sock, 2); + ipc->sock = -1; + exit(1); +}