blob: 73c1ad26f3969a4d82be96cf4168d13d8156f033 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "config.h"
#include "ntp_stdlib.h"
#include "sntp-opts.h"
#include "sntptest.h"
void
sntptest(void) {
optionSaveState(&sntpOptions);
}
void
sntptest_destroy(void) {
optionRestore(&sntpOptions);
}
void
ActivateOption(const char* option, const char* argument) {
const int ARGV_SIZE = 4;
char* opts[ARGV_SIZE];
opts[0] = estrdup("sntpopts");
opts[1] = estrdup(option);
opts[2] = estrdup(argument);
opts[3] = estrdup("127.0.0.1");
optionProcess(&sntpOptions, ARGV_SIZE, opts);
}
|