fort_SOURCES += config/mode.c config/mode.h
fort_SOURCES += config/incidences.h config/incidences.c
fort_SOURCES += config/output_format.h config/output_format.c
-fort_SOURCES += config/init_tals.h config/init_tals.c
fort_SOURCES += config/rsync_strategy.h config/rsync_strategy.c
fort_SOURCES += config/str.c config/str.h
fort_SOURCES += config/string_array.h config/string_array.c
#include "log.h"
#include "config/boolean.h"
#include "config/incidences.h"
-#include "config/init_tals.h"
#include "config/str.h"
#include "config/uint.h"
#include "config/work_offline.h"
/* Download AS0 TALs into --tal? */
bool init_tal0s;
- /* Deprecated; currently does nothing. */
- unsigned int init_tal_locations;
-
/* Thread pools for specific tasks */
struct {
/* Threads related to RTR server */
.offset = offsetof(struct rpki_config, init_tal0s),
.doc = "Fetch the currently-known AS0 TAL files into --tal",
.availability = AVAILABILITY_GETOPT,
- }, {
- .id = 11001,
- .name = "init-locations",
- .type = >_init_tals_locations,
- .offset = offsetof(struct rpki_config, init_tal_locations),
- .doc = "Deprecated. Does nothing as of Fort 1.5.1.",
- .availability = AVAILABILITY_JSON,
},
{
rpki_config.asn1_decode_max_stack = 4096; /* 4kB */
rpki_config.init_tals = false;
- rpki_config.init_tal_locations = 0;
rpki_config.thread_pool.server.max = 20;
rpki_config.thread_pool.validation.max = 5;
+++ /dev/null
-#include "config/init_tals.h"
-
-static int
-init_tals_parse_json(struct option_field const *opt, json_t *json, void *result)
-{
- /* This is deprecated. Please delete it in the future. */
- return 0;
-}
-
-const struct global_type gt_init_tals_locations = {
- .print = NULL,
- .parse.json = init_tals_parse_json,
-};
+++ /dev/null
-#ifndef SRC_CONFIG_INIT_TALS_H_
-#define SRC_CONFIG_INIT_TALS_H_
-
-#include "config/types.h"
-
-extern const struct global_type gt_init_tals_locations;
-
-#endif /* SRC_CONFIG_INIT_TALS_H_ */