Remove unused functions and variables.
authorGuus Sliepen <guus@tinc-vpn.org>
Thu, 2 Jun 2011 15:57:53 +0000 (17:57 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Thu, 2 Jun 2011 15:57:53 +0000 (17:57 +0200)
src/net_socket.c
src/process.c
src/tincctl.c

index 97a8058..80f37a4 100644 (file)
@@ -466,12 +466,6 @@ static void handle_meta_write(int sock, short events, void *data) {
                event_del(&c->outevent);
 }
 
-static void handle_meta_connection_error(struct bufferevent *event, short what, void *data) {
-       connection_t *c = data;
-       logger(LOG_ERR, "handle_meta_connection_error() called: %d: %s", what, strerror(errno));
-       terminate_connection(c, c->status.active);
-}
-
 void setup_outgoing_connection(outgoing_t *outgoing) {
        connection_t *c;
        node_t *n;
index 3b14790..19c3980 100644 (file)
@@ -40,11 +40,6 @@ extern char *identname;
 extern char **g_argv;
 extern bool use_logfile;
 
-static void memory_full(int size) {
-       logger(LOG_ERR, "Memory exhausted (couldn't allocate %d bytes), exitting.", size);
-       exit(1);
-}
-
 /* Some functions the less gifted operating systems might lack... */
 
 #ifdef HAVE_MINGW
@@ -353,7 +348,7 @@ static struct {
 void setup_signals(void) {
 #ifndef HAVE_MINGW
        int i;
-       struct sigaction act = {NULL};
+       struct sigaction act = {{NULL}};
 
        sigemptyset(&act.sa_mask);
 
index 20fc991..6d7f03b 100644 (file)
@@ -38,12 +38,6 @@ static bool show_help = false;
 /* If nonzero, print the version on standard output and exit.  */
 static bool show_version = false;
 
-/* If nonzero, it will attempt to kill a running tincd and exit. */
-static int kill_tincd = 0;
-
-/* If nonzero, generate public/private keypair for this host/net. */
-static int generate_keys = 0;
-
 static char *name = NULL;
 static char *identname = NULL;                         /* program name for syslog */
 static char *controlcookiename = NULL;                 /* cookie file location */