blob: 785c31242d74a50852ad0fcd36433c59b6dc2948 (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* ntpdc.h - definitions of interest to ntpdc
*/
#include "ntp_fp.h"
#include "ntp.h"
#include "ntp_request.h"
#include "ntp_string.h"
#include "ntp_malloc.h"
/*
* Maximum number of arguments
*/
#define MAXARGS 4
#define MOREARGS 10
/*
* Flags for forming descriptors.
*/
#define OPT 0x80 /* this argument is optional, or'd with type */
#define NO 0x0
#define NTP_STR 0x1 /* string argument */
#define NTP_UINT 0x2 /* unsigned integer */
#define NTP_INT 0x3 /* signed integer */
#define NTP_ADD 0x4 /* IP network address */
#define IP_VERSION 0x5 /* IP version */
/*
* Arguments are returned in a struct - no
* union space saving is attempted.
*/
typedef struct {
u_char type;
char *string;
long ival;
u_long uval;
struct sockaddr_storage netnum;
} arg_v;
/*
* Structure for passing parsed command line
*/
struct parse {
char *keyword;
arg_v argval[MAXARGS + MOREARGS];
int nargs;
};
/*
* ntpdc includes a command parser which could charitably be called
* crude. The following structure is used to define the command
* syntax.
*/
struct xcmd {
const char *keyword; /* command key word */
void (*handler) P((struct parse *, FILE *)); /* command handler */
u_char arg[MAXARGS]; /* descriptors for arguments */
const char *desc[MAXARGS]; /* descriptions for arguments */
const char *comment;
};
extern int impl_ver;
extern int showhostnames;
extern int s_port;
extern int doquery P((int, int, int, int, int, char *, int *, int *, char **, int, int));
extern char * nntohost P((struct sockaddr_storage *));
|