along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: process.c,v 1.1.2.23 2001/07/24 20:03:40 guus Exp $
+ $Id: process.c,v 1.1.2.24 2001/09/01 12:36:53 guus Exp $
*/
#include "config.h"
/*
kill older tincd for this net
*/
-int kill_other(void)
+int kill_other(int signal)
{
int pid;
cp
errno = 0; /* No error, sometimes errno is only changed on error */
/* ESRCH is returned when no process with that pid is found */
- if(kill(pid, SIGTERM) && errno == ESRCH)
+ if(kill(pid, signal) && errno == ESRCH)
fprintf(stderr, _("Removing stale lock file.\n"));
remove_pid(pidfilename);
cp
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: process.h,v 1.1.2.8 2001/03/01 21:32:04 guus Exp $
+ $Id: process.h,v 1.1.2.9 2001/09/01 12:36:53 guus Exp $
*/
#ifndef __TINC_PROCESS_H__
extern void setup_signals(void);
extern int execute_script(const char *);
extern int detach(void);
-extern int kill_other(void);
+extern int kill_other(int);
extern void cleanup_and_exit(int);
#endif /* __TINC_PROCESS_H__ */
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: tincd.c,v 1.10.4.51 2001/07/24 20:04:22 guus Exp $
+ $Id: tincd.c,v 1.10.4.52 2001/09/01 12:36:53 guus Exp $
*/
#include "config.h"
static struct option const long_options[] =
{
{ "config", required_argument, NULL, 'c' },
- { "kill", no_argument, NULL, 'k' },
+ { "kill", optional_argument, NULL, 'k' },
{ "net", required_argument, NULL, 'n' },
{ "help", no_argument, &show_help, 1 },
{ "version", no_argument, &show_version, 1 },
{ "no-detach", no_argument, &do_detach, 0 },
{ "generate-keys", optional_argument, NULL, 'K'},
+ { "debug", optional_argument, NULL, 'd'},
{ NULL, 0, NULL, 0 }
};
printf(_("Usage: %s [option]...\n\n"), program_name);
printf(_(" -c, --config=DIR Read configuration options from DIR.\n"
" -D, --no-detach Don't fork and detach.\n"
- " -d Increase debug level.\n"
- " -k, --kill Attempt to kill a running tincd and exit.\n"
+ " -d, --debug[=LEVEL] Increase debug level or set it to LEVEL.\n"
+ " -k, --kill[=SIGNAL] Attempt to kill a running tincd and exit.\n"
" -n, --net=NETNAME Connect to net NETNAME.\n"));
printf(_(" -K, --generate-keys[=BITS] Generate public/private RSA keypair.\n"
" --help Display this help and exit.\n"
int r;
int option_index = 0;
- while((r = getopt_long(argc, argv, "c:Ddkn:K::", long_options, &option_index)) != EOF)
+ while((r = getopt_long(argc, argv, "c:Dd::k::n:K::", long_options, &option_index)) != EOF)
{
switch(r)
{
debug_lvl++;
break;
case 'k': /* kill old tincds */
- kill_tincd = 1;
+ kill_tincd = optarg?atoi(optarg):SIGTERM;
break;
case 'n': /* net name given */
netname = xmalloc(strlen(optarg)+1);
{
fprintf(stderr, _("Error during key generation!\n"));
return -1;
- }
+ }
else
fprintf(stderr, _("Done.\n"));
}
if(kill_tincd)
- exit(kill_other());
+ exit(kill_other(kill_tincd));
if(read_server_config())
exit(1);