Update all server port command to use new helper.
This commit is contained in:
parent
ae5732b9e4
commit
2b78a4e82b
|
@ -2271,15 +2271,7 @@ int handle_gdb_sync_command(struct command_context_s *cmd_ctx, char *cmd, char *
|
||||||
/* daemon configuration command gdb_port */
|
/* daemon configuration command gdb_port */
|
||||||
int handle_gdb_port_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
int handle_gdb_port_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
||||||
{
|
{
|
||||||
if (argc == 0)
|
return server_port_command(cmd_ctx, cmd, args, argc, &gdb_port);
|
||||||
{
|
|
||||||
command_print(cmd_ctx, "%d", gdb_port);
|
|
||||||
return ERROR_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
gdb_port = strtoul(args[0], NULL, 0);
|
|
||||||
|
|
||||||
return ERROR_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int handle_gdb_memory_map_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
int handle_gdb_memory_map_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
||||||
|
|
|
@ -179,10 +179,8 @@ int tcl_register_commands(command_context_t *cmd_ctx)
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int handle_tcl_port_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
static int handle_tcl_port_command(struct command_context_s *cmd_ctx,
|
||||||
|
char *cmd, char **args, int argc)
|
||||||
{
|
{
|
||||||
if (argc == 1) {
|
return server_port_command(cmd_ctx, cmd, args, argc, &tcl_port);
|
||||||
tcl_port = strtoul(args[0], NULL, 0);
|
|
||||||
}
|
|
||||||
return ERROR_OK;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -622,15 +622,7 @@ int telnet_register_commands(command_context_t *command_context)
|
||||||
/* daemon configuration command telnet_port */
|
/* daemon configuration command telnet_port */
|
||||||
int handle_telnet_port_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
int handle_telnet_port_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
||||||
{
|
{
|
||||||
if (argc == 0)
|
return server_port_command(cmd_ctx, cmd, args, argc, &telnet_port);
|
||||||
{
|
|
||||||
command_print(cmd_ctx, "%d", telnet_port);
|
|
||||||
return ERROR_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
telnet_port = strtoul(args[0], NULL, 0);
|
|
||||||
|
|
||||||
return ERROR_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int handle_exit_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
int handle_exit_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
|
||||||
|
|
Loading…
Reference in New Issue