13 lines
293 B
C
13 lines
293 B
C
#include "compiler.h"
|
|
#include "ft_ssl.h"
|
|
#include "ft_ssl_flags.h"
|
|
#include "internal/cli/cli_handlers.h"
|
|
|
|
int
|
|
cli_handle_r(__unused const char *arg, void *config_void)
|
|
{
|
|
struct ssl_config *config = (struct ssl_config *)config_void;
|
|
|
|
SET_FLAG(config->flags, FLAG_R);
|
|
return CLI_SUCCESS;
|
|
}
|