mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Allow submitting BIRD commands from UNIX shell even in restricted mode.
This commit is contained in:
parent
8c4da7e01d
commit
4c2abee74e
@ -29,6 +29,7 @@ static char *opt_list = "s:vr";
|
||||
static int verbose;
|
||||
static char *init_cmd;
|
||||
static int once;
|
||||
static int restricted;
|
||||
|
||||
static char *server_path = PATH_CONTROL_SOCKET;
|
||||
static int server_fd;
|
||||
@ -70,7 +71,7 @@ parse_args(int argc, char **argv)
|
||||
verbose++;
|
||||
break;
|
||||
case 'r':
|
||||
init_cmd = "restrict";
|
||||
restricted = 1;
|
||||
break;
|
||||
default:
|
||||
usage();
|
||||
@ -83,9 +84,6 @@ parse_args(int argc, char **argv)
|
||||
int i;
|
||||
int len = 0;
|
||||
|
||||
if (init_cmd)
|
||||
usage();
|
||||
|
||||
for (i = optind; i < argc; i++)
|
||||
len += strlen(argv[i]) + 1;
|
||||
|
||||
@ -303,6 +301,13 @@ update_state(void)
|
||||
if (nstate == cstate)
|
||||
return;
|
||||
|
||||
if (restricted)
|
||||
{
|
||||
submit_server_command("restrict");
|
||||
restricted = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
if (init_cmd)
|
||||
{
|
||||
/* First transition - client received hello from BIRD
|
||||
|
Loading…
Reference in New Issue
Block a user