diff options
author | dequis <dx@dxzone.com.ar> | 2014-09-27 11:54:35 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2014-09-27 11:54:35 -0300 |
commit | e252d8cab06e038e5801652bedf02de9170c7945 (patch) | |
tree | d83b96948a6f7b303e98727faa6a15ba8453ed09 /ipc.c | |
parent | d3483776b4b7f45b99127240d76f3c978c260ca2 (diff) |
RIP native win32 support (use cygwin instead)
It has been broken for a very long time and nobody cared about it.
Diffstat (limited to 'ipc.c')
-rw-r--r-- | ipc.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -27,10 +27,8 @@ #include "bitlbee.h" #include "ipc.h" #include "commands.h" -#ifndef _WIN32 #include <sys/uio.h> #include <sys/un.h> -#endif GSList *child_list = NULL; static int ipc_child_recv_fd = -1; @@ -842,7 +840,6 @@ void ipc_child_disable() global.listen_socket = -1; } -#ifndef _WIN32 char *ipc_master_save_state() { char *fn = g_strdup( "/tmp/bee-restart.XXXXXX" ); @@ -941,13 +938,6 @@ int ipc_master_listen_socket() return 1; } -#else -int ipc_master_listen_socket() -{ - /* FIXME: Open named pipe \\.\BITLBEE */ - return 0; -} -#endif int ipc_master_load_state( char *statefile ) { |